Answers for "css center icon in div"

CSS
0

position an icon in relation a parent element

.container {
  position: relative;
  min-height: 100vh;
}
.vertical-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
Posted by: Guest on June-16-2020
0

align icon center div

.centered{
position:relative;
top:50%;
left:50%;
transform:translate(-50%,-50%)
}

.container{
width:100px;
height:100px;
}
Posted by: Guest on October-19-2021

Browse Popular Code Answers by Language