Created
November 28, 2012 13:04
-
-
Save kizu/4161142 to your computer and use it in GitHub Desktop.
CSS Dot Leaders With Textured Background
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
/** | |
* CSS Dot Leaders With Textured Background | |
*/ | |
html { | |
background: #f06; | |
background: linear-gradient(45deg, #f06, yellow); | |
min-height: 100%; | |
font: 20px/1.4 Helvetica, Arial sans-serif | |
} | |
dl { | |
overflow: hidden; | |
} | |
dt { | |
float: left; | |
padding: 0 .4em 0 0; | |
margin: 0; | |
} | |
dd { | |
float: right; | |
padding: 0 0 0 .4em; | |
margin: 0; | |
} | |
/* That's the leader! */ | |
dl:after { | |
content: ""; | |
display: block; | |
overflow: hidden; | |
height: 1em; | |
border-bottom: 1px dotted; | |
} |
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> | |
<dt>Salmon Ravioli</dt> | |
<dd>7.95</dd> | |
</dl> | |
<dl> | |
<dt>Fried Calamari</dt> | |
<dd>8.95</dd> | |
</dl> | |
<dl> | |
<dt>Almond Prawn Cocktail</dt> | |
<dd>712.95</dd> | |
</dl> | |
<dl> | |
<dt>Bruschetta</dt> | |
<dd>5.25</dd> | |
</dl> | |
<dl> | |
<dt>Margherita Pizza </dt> | |
<dd>0.95</dd> | |
</dl> |
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
// alert('Hello world!'); |
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
{"view":"split-vertical","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@alexvkcr here is a bit more modern version that works with multiline items :) https://codepen.io/kizu/pen/xxxbyBm