
Originally Posted by
jscheuer1
HTML Code:
<div align="center">put the script and its ilayer here</div>
Just so you know, the preferred way to centre content is to set equal margins on the element:
Code:
.centred {
margin: 0 auto;
width: ??;
}
HTML Code:
<div class="centred">...</div>
The align attribute and the center element are deprecated. The latter was never really very good at centring due to various interpretations of a rather vague specification. The align attribute is equally vague, which is why it too should be dropped.
See a recent discussion in Usenet.
Mike
Bookmarks