Last active
August 29, 2015 14:17
-
-
Save tyv/70e33bb40d6b6d495697 to your computer and use it in GitHub Desktop.
Untitled
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, ol | |
{ | |
font: 16px Arial; | |
width: 200px; | |
margin: 0; | |
padding: 0; | |
} | |
body | |
{ | |
padding: 40px; // Важно чтобы был внешний padding | |
} | |
ul | |
{ | |
list-style: none; | |
} | |
ol | |
{ | |
list-style-position: outside; | |
} | |
li | |
{ | |
margin: 0; | |
padding-left: 16px; | |
} | |
li:before | |
{ | |
position: absolute; | |
} | |
ul li:before | |
{ | |
content: "•"; | |
margin-left: -16px; | |
} |
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> | |
<li>Длинная длинная длинная длинная длинная длинная строка</li> | |
<li>Длинная длинная длинная длинная длинная длинная строка</li> | |
</ul> | |
<ol> | |
<li>Длинная длинная длинная длинная длинная длинная строка</li> | |
<li>Длинная длинная длинная длинная длинная длинная строка</li> | |
</ol> |
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":"separate","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment