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 + +
| Class | +Properties | +Description | +
|---|---|---|
| .block | +display: block; | +Set the box type of the element to block. |
+
| .inline-block | +display: inline-block; | +Set the box type of the element to inline-block. |
+
| .inline | +display: inline; | +Set the box type of the element to inline. |
+
| .table | +display: table; | +Set the box type of the element to table. |
+
| .table-row | +display: table-row; | +Set the box type of the element to table-row. |
+
| .table-cell | +display: table-cell; | +Set the box type of the element to table-cell. |
+
| .hidden | +display: none; | +Set the box type of the element to none. |
+