Created
February 24, 2012 16:26
-
-
Save LeaVerou/1901867 to your computer and use it in GitHub Desktop.
Flexible multiline definition lists with 2 lines of CSS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Flexible multiline definition lists with 2 lines of CSS | |
*/ | |
dt, dd { display: inline; margin: 0; } | |
dd:after { | |
content: '\A'; | |
white-space: pre; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<dl> | |
<dt>foo:</dt> | |
<dd>Definition of foo</dd> | |
<dt>bar:</dt> | |
<dd>Definition of bar</dd> | |
</dl> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"view":"split","seethrough":"","prefixfree":"","page":"all"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment