-
-
Save badcrocodile/fb7b18833d33857fba92 to your computer and use it in GitHub Desktop.
Center text vertically
This file contains 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> | |
<span>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</span> | |
</div> |
This file contains 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 { | |
width: 250px; | |
height: 100px; | |
line-height: 100px; | |
text-align: center; | |
border: 1px solid #123456; | |
} | |
span { | |
display: inline-block; | |
vertical-align: middle; | |
line-height: normal; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment