Created
November 2, 2013 13:51
-
-
Save dani-z/7279103 to your computer and use it in GitHub Desktop.
DOT LEADERS
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
<ul class=leaders> | |
<li><span>Salmon Ravioli</span> | |
<span>7.95</span> | |
<li><span>Fried Calamari</span> | |
<span>8.95</span> | |
<li><span>Almond Prawn Cocktail</span> | |
<span>7.95</span> | |
<li><span>Bruschetta</span> | |
<span>5.25</span> | |
<li><span>Margherita Pizza</span> | |
<span>10.95</span> | |
</ul> |
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
ul.leaders { | |
max-width: 40em; | |
padding: 0; | |
overflow-x: hidden; | |
list-style: none} | |
ul.leaders li:before { | |
float: left; | |
width: 0; | |
white-space: nowrap; | |
content: | |
". . . . . . . . . . . . . . . . . . . . " | |
". . . . . . . . . . . . . . . . . . . . " | |
". . . . . . . . . . . . . . . . . . . . " | |
". . . . . . . . . . . . . . . . . . . . "} | |
ul.leaders span:first-child { | |
padding-right: 0.33em; | |
background: white} | |
ul.leaders span + span { | |
float: right; | |
padding-left: 0.33em; | |
background: white} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment