Created
July 13, 2012 10:22
-
-
Save rginamt/3104098 to your computer and use it in GitHub Desktop.
Center lists
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
/** | |
* Center lists | |
*/ | |
div { | |
width: 100%; | |
overflow:hidden; | |
position:relative; | |
} | |
div ul { | |
float:left; | |
position:relative; | |
left:50%; | |
list-style:none; | |
} | |
div ul li { | |
float:left; | |
position:relative; | |
right:50%; | |
padding:10px; | |
} |
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> --> | |
<body> | |
<div> | |
<ul> | |
<li> budgies </li> | |
<li> cats </li> | |
<li> dogs </li> | |
<!-- the content increase --> | |
<li> more budgies </li> | |
<li> more cats </li> | |
<li> more dogs </li> | |
<ul> | |
</div> | |
</body> | |
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-vertical","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