Skip to content

Instantly share code, notes, and snippets.

@victory-sokolov
Created June 11, 2017 10:33
Show Gist options
  • Save victory-sokolov/cf365d242af532e99f0266ffe349eff1 to your computer and use it in GitHub Desktop.
Save victory-sokolov/cf365d242af532e99f0266ffe349eff1 to your computer and use it in GitHub Desktop.
/* 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