diff --git a/docs/source/styles/display.blade.md b/docs/source/styles/display.blade.md new file mode 100644 index 000000000..f55be3f1d --- /dev/null +++ b/docs/source/styles/display.blade.md @@ -0,0 +1,68 @@ +--- +extends: _layouts.markdown +title: "Display" +--- + +# Display + +
+ Utilities for controlling the box type of an element. +
+ +@include('_partials.feature-badges', [ + 'responsive' => true, + 'customizable' => false, + 'hover' => false, + 'focus' => false +]) + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ClassPropertiesDescription
.blockdisplay: block;Set the box type of the element to block.
.inline-blockdisplay: inline-block;Set the box type of the element to inline-block.
.inlinedisplay: inline;Set the box type of the element to inline.
.tabledisplay: table;Set the box type of the element to table.
.table-rowdisplay: table-row;Set the box type of the element to table-row.
.table-celldisplay: table-cell;Set the box type of the element to table-cell.
.hiddendisplay: none;Set the box type of the element to none.
+
+ +If you're looking for Flexbox utilities, please see the [Flexbox](/styles/flexbox) page. diff --git a/docs/source/styles/display.md b/docs/source/styles/display.md deleted file mode 100644 index 7f3bdd8f6..000000000 --- a/docs/source/styles/display.md +++ /dev/null @@ -1,51 +0,0 @@ ---- -extends: _layouts.markdown -title: "Display" ---- - -# Display - - - -> If you're looking for Flexbox utilities, see the [Flexbox](/styles/flexbox) page. - -The display utilities simply `display` property helpers. - -```html - - -
-
-
- - -
-
-
-
-
-``` - -## Responsive - -The display utitlies can also be used with responsive prefixes: - -```html - - -
-``` - -```less -// Using the utilities in Less: - -div { - .screen(lg, { - .inline-block; - }); -} -```