Trying to centre a web page
Trying to centre a web page
Out of context: Reply #6
- Started
- Last post
- 10 Responses
- Mario0
Try doing it with CSS.
Something like this:
//-------------------------
body
{
text-align: center;
}#container
{
width: 700px;
margin-left: auto;
margin-right: auto;
}
//-------------------------Wrap a DIV tag around your content in your HTML-document and give it the ID "container".