From 7f72a8fc071d41b01d3a04d6319fe914007aa62e Mon Sep 17 00:00:00 2001 From: Lachlan Campbell Date: Thu, 24 Mar 2016 15:17:07 -0400 Subject: [PATCH] Clean up measure/line height on display docs --- docs/layout/display/index.html | 12 ++++++------ src/templates/docs/display/index.html | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/docs/layout/display/index.html b/docs/layout/display/index.html index c86421a86..c91d6d4e2 100644 --- a/docs/layout/display/index.html +++ b/docs/layout/display/index.html @@ -87,7 +87,7 @@

Display Block

<span class="db"></span> -

Block will inherently set width to 100% of its parent element. It will also cause a line break, even if the declared width doesn't take up the full width of the parent.

+

Block will inherently set width to 100% of its parent element. It will also cause a line break, even if the declared width doesn't take up the full width of the parent.

block
@@ -100,7 +100,7 @@

Display Inline-Block

<span class="dib"></span> -

+

Inline-block will wrap around content inline. It also allows you to set height and width properties on the element, which display inline does not allow you to do. It does render the white-space inbeween elements, so if you set @@ -125,7 +125,7 @@

Display Inline

<div class="di"></div> -

+

Set content inline. Inline doesn't respect height or width values. It does not render white space between elements.

@@ -149,10 +149,10 @@

Display Table

   <div class="dtc"></div>
</div> -

+

Display table can be combined with display table-cell to render a table without table markup. This can be useful for vertically aligning content - or for auto-calculating a variable amount of table cells. + or for auto-calculating a variable number of table cells.

display
@@ -165,7 +165,7 @@

Display None

<div class="dn"></div> -

+

You can set the display of any element to none by tacking on the dn class.

diff --git a/src/templates/docs/display/index.html b/src/templates/docs/display/index.html index 1f6d5eb4d..16154713e 100644 --- a/src/templates/docs/display/index.html +++ b/src/templates/docs/display/index.html @@ -51,7 +51,7 @@

Display Block

<span class="db"></span> -

Block will inherently set width to 100% of its parent element. It will also cause a line break, even if the declared width doesn't take up the full width of the parent.

+

Block will inherently set width to 100% of its parent element. It will also cause a line break, even if the declared width doesn't take up the full width of the parent.

block
@@ -64,7 +64,7 @@

Display Inline-Block

<span class="dib"></span> -

+

Inline-block will wrap around content inline. It also allows you to set height and width properties on the element, which display inline does not allow you to do. It does render the white-space inbeween elements, so if you set @@ -89,7 +89,7 @@

Display Inline

<div class="di"></div> -

+

Set content inline. Inline doesn't respect height or width values. It does not render white space between elements.

@@ -113,10 +113,10 @@

Display Table

   <div class="dtc"></div>
</div> -

+

Display table can be combined with display table-cell to render a table without table markup. This can be useful for vertically aligning content - or for auto-calculating a variable amount of table cells. + or for auto-calculating a variable number of table cells.

display
@@ -129,7 +129,7 @@

Display None

<div class="dn"></div> -

+

You can set the display of any element to none by tacking on the dn class.