Using style sheet to make text center with HTML
in style sheet (.css) file , you define class like thisdiv.div_center{
width:800px;
left:50%;
margin: 0px auto 0px auto;
}
to use like this
...
<body>
<div class = "div_center">
... center stuff..
</div>
</body>
No comments:
Post a Comment