+ 3
Guys please help me !
I want to align title of page in center in html how to do it. https://code.sololearn.com/WzKBH47R4vnD/?ref=app
7 Answers
+ 2
I want inline center
+ 2
do you mean exact center of the page?
+ 1
just use the center tag
https://code.sololearn.com/W721843IPViK/?ref=app
+ 1
https://code.sololearn.com/W1wPZ0xge399/?ref=app
+ 1
Try to change to CSS body .box1, h1.
body {
padding:0;
margin:0;
background:linear-gradient(to right,#008C9E,#00DFFC);
}
.box1{
padding:5px;
width:100%;
margin: calc((100%-60px)/2) 0 ;
}
h1 {
display:inline-block ;
text-align:center;
vertical-align: middle ;
color:#fff;
width:80%;
}
+ 1
parent {
display:flex;
justify-content:center;
align-items:center;}
https://code.sololearn.com/WED9KDStqVQn/?ref=app
0
If you meant verically center and horisontal center, gave a look at
https://stackoverflow.com/questions/12415661/using-marginauto-to-vertically-align-a-div#12417336
https://code.sololearn.com/WXQI72PJcG10/?ref=app