+ 1
How could I align the whole <body> of an html page to the center?
7 Antworten
+ 3
Sure by applying margin hack (remember to set your desidered width else it dont work)
body{
width: 80%;
margin: 0 auto;
}
+ 3
Jemuel Stanley Warn that align attribute is NOT SUPPORTED in HTML5
+ 2
👍👍👍👍
+ 2
You can just use the attribute of the body tag : align
<body align=centre>
-Note: HTML5 doesnt support it.
........
</body>
Just use
<script>
body {
text-align: middle;
vertical-align: center;
margin: auto;
}
This is the most appropriate.
KrOW width doesnt help for all screen sizes.
+ 1
This aligns the contents inside. I want to align the "entire body".
+ 1
KrOW thank you sooo much :)
0
Point taken KrOW! Thank you!