Answers for "centre an absolute centre"

CSS
10

absolute position center

position: absolute;
margin-left: auto;
margin-right: auto;
left: 0;
right: 0;
text-align: center;
Posted by: Guest on May-24-2020
1

centre align in position absolute

position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
Posted by: Guest on February-01-2021

Browse Popular Code Answers by Language