Created
September 4, 2014 08:55
-
-
Save leechy/7e03d8847def149b85db to your computer and use it in GitHub Desktop.
Vertical alignment
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
/** | |
* Vertical alignment | |
*/ | |
html, | |
body { | |
height: 100%; | |
margin: 0; | |
background: #f06; | |
background: linear-gradient(45deg, #f06, yellow); | |
} | |
.a { | |
height: 100%; | |
box-shadow: 0 0 2px green inset; | |
text-align: center; | |
font-size: 0px; | |
} | |
.a:after { | |
display: inline-block; | |
content: ' '; | |
height: 100%; | |
vertical-align: middle; | |
} | |
.b { | |
display: inline-block; | |
vertical-align: middle; | |
font-size: 18px; | |
border: 2px solid blue; | |
} |
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> --> | |
<div class="a"> | |
<div class="b"> | |
Хочу этот див по центру по вертикали! | |
</div> | |
</div> |
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":"all"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment