Showing posts with label style sheet. Show all posts
Showing posts with label style sheet. Show all posts

Wednesday, March 9, 2011

Using style sheet to make text center with HTML

Using style sheet to make text center with HTML

in style sheet (.css) file , you define class like this

div.div_center{
   width:800px;
   left:50%;
   margin: 0px auto 0px auto;
}

to use like this

...
<body>

<div class = "div_center">
    ... center stuff..
</div>

</body>