-
-
Save AntoscencoVladimir/6bd01f7d1ce5190c44192adf4e877a2d to your computer and use it in GitHub Desktop.
do vertical align
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
<div id="main"> | |
<div id="abc"> | |
<span>content</span> | |
</div> | |
</div> | |
body{ | |
padding: 0; | |
margin: 0; | |
margin:0px auto; | |
} | |
#main{ | |
position: relative; | |
background-color:blue; | |
width:500px; | |
height:500px; | |
} | |
#abc{ | |
font:Verdana, Geneva, sans-serif; | |
font-size:18px; | |
text-align:left; | |
background-color:#0F0; | |
height:50px; | |
display: table; | |
width: 100%; | |
} | |
#abc span { | |
vertical-align:middle; | |
display: table-cell; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment