How Do You Centre A Page (html Code Ect.) So It Is In The Middle For Large And Small Screen Viewres On Piczo. ?
Do you know html code to paste onto my piczo site to make the page centred in the middle of the screen (text boxes ect) so there is an equal amount of background on each side?
Tagged with: Centre • Code. • Ect. • HTML • Large • Middle • Page • Screen • Small • Viewres
Filed under: HTML
Like this post? Subscribe to my RSS feed and get loads more!

use CSS,
.centered {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 50%;
height: 50%;
margin: auto;
background-color: red;
color: white;
}
A simple HTML tag would just be to use the