-
-
Save Usse/8425724 to your computer and use it in GitHub Desktop.
Multiple line li center
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
/** | |
* Multiple line li center | |
*/ | |
ul { | |
list-style-type:none; | |
text-align:center; | |
} | |
li { | |
display:inline-block; | |
width:250px; | |
height:200px; | |
line-height:200px; | |
background:#453456; | |
color:white; | |
text-shadow : 2px 2px 2px black; | |
margin:2px; | |
} |
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>First</li> | |
<li>Second</li> | |
<li>Third</li> | |
<li>Fourth</li> | |
<li>Fifth</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
// 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":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment