Created
June 11, 2017 10:33
-
-
Save victory-sokolov/cf365d242af532e99f0266ffe349eff1 to your computer and use it in GitHub Desktop.
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
/* Method 1 */ | |
.a { | |
width: 200px; | |
height: 200px; | |
background-color: black; | |
color: #fff; | |
display:flex; | |
justify-content:center; | |
flex-direction:column; | |
} | |
/* Method 2 (Working in all browsers )*/ | |
.a { | |
height: 150px; | |
width: 240px; | |
background-color: black; | |
color:white; | |
display:table; | |
} | |
.a p { | |
display:table-cell; | |
vertical-align: middle; | |
} | |
/* Method 3 */ | |
outer { | |
width: 200px; | |
height: 200px; | |
background-color: black; | |
color:white; | |
position: relative; | |
} | |
.inner { | |
height: 50px; | |
width: 50px; | |
background-color: red; | |
position: absolute; | |
top: 50%; | |
transform:translateY(-50%); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment