Created
October 15, 2012 19:04
-
-
Save pongo/3894428 to your computer and use it in GitHub Desktop.
Верстка содержания
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="toc"> | |
| <li><span>Глава 1</span><span class="page">2</span></li> | |
| <li><span>Глава 2. Название длинное не влезло в одну строку и получился перенос на две</span><span class="page">32</span></li> | |
| <li><span>Глава 3</span><span class="page">122</span></li> | |
| </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.toc { | |
| list-style: none; | |
| margin: 0 auto; | |
| padding: 0; | |
| text-align: left; | |
| width: 524px; | |
| } | |
| .toc > li { | |
| width: 500px; | |
| border-bottom: 1px dotted #000; | |
| position: relative; | |
| padding-right: 24px; /* отступ равен ширине поля для номера */ | |
| margin-bottom: 10px; | |
| } | |
| .toc > li span { | |
| background: #fff; /* перекрываем фон из точек под надписями */ | |
| position :relative; | |
| bottom: -4px; /* подбирается индивидуально по шрифту */ | |
| } | |
| .toc .page { | |
| position: absolute; | |
| right: 0; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment