Last active
September 12, 2015 19:13
-
-
Save dansheffler/c5714b4a1e9d3dc7b35e to your computer and use it in GitHub Desktop.
Definition List CSS
This file contains hidden or 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 { | |
padding: 0; | |
margin: 1.5em 0; | |
} | |
dt { | |
float: left; | |
clear: left; | |
font-weight: bold; | |
margin-right: 1em; | |
} | |
dt::after { | |
content: ": "; | |
} | |
dd { | |
margin: 0 0 1.5em 0; | |
padding: 0; | |
} | |
dd p { | |
margin: 0; | |
padding: 0; | |
width: 100%; | |
clear: right; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment