Created
August 7, 2012 18:48
-
-
Save jonathansousa/3288257 to your computer and use it in GitHub Desktop.
Column/Background Bug Test
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
/** | |
* Column/Background Bug Test | |
*/ | |
ul { | |
-moz-column-count: 2; | |
-moz-column-gap: 5px; | |
-webkit-column-count: 2; | |
-webkit-column-gap: 5px; | |
column-count: 2; | |
column-gap: 5px; | |
width:360px; | |
margin-left:270px; | |
} | |
li { | |
position:relative; | |
padding-left:20px; | |
background:none; | |
display:inline-block; | |
min-height:0; | |
width:100%; | |
clear:none; | |
background:blue url('https://jolitics.com/static/img/b_checkmark_green.png') 0 0 no-repeat; | |
font-size:0.9em; | |
} | |
li.incomplete { | |
background-position:-1px -1px; | |
} |
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
<!-- content to be placed inside <body>…</body> --> | |
<ul> | |
<li>Sample Item 1</li> | |
<li>Sample Item 2</li> | |
<li>Sample Item 3</li> | |
<li class="incomplete">Sample Item 4</li> | |
<li>Sample Item 5</li> | |
<li>Sample Item 6</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
{"view":"split","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