Skip to content

Instantly share code, notes, and snippets.

@tyv
Last active August 29, 2015 14:17
Show Gist options
  • Save tyv/70e33bb40d6b6d495697 to your computer and use it in GitHub Desktop.
Save tyv/70e33bb40d6b6d495697 to your computer and use it in GitHub Desktop.
Untitled
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;
}
<ul>
<li>Длинная длинная длинная длинная длинная длинная строка</li>
<li>Длинная длинная длинная длинная длинная длинная строка</li>
</ul>
<ol>
<li>Длинная длинная длинная длинная длинная длинная строка</li>
<li>Длинная длинная длинная длинная длинная длинная строка</li>
</ol>
// alert('Hello world!');
{"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