Answers for "bring icon at center of div"

CSS
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

Code answers related to "bring icon at center of div"

Browse Popular Code Answers by Language