Re: Field Alignment and formatting [message #2752 is a reply to message #2751] |
Thu, 21 July 2011 11:25 |
AJM
Messages: 2368 Registered: April 2006 Location: Surrey, UK
|
Senior Member |
|
|
If <COL ALIGN="RIGHT" /> does not work then <COL CLASS="right" /> should, as both are valid according to the HTML 4.01 specification. It would appear that <COL ALIGN="RIGHT" /> will not be supported in HTML 5, but <COL CLASS="right" /> is still there, so *should* be supported by *ALL* browsers.
Note that CLASS="right" indicates a CSS class with the following contents:
.right {
text-align: right;
}
This works in IE7, but not in IE8 (I don't know about IE9). It also does *NOT* work in Safari 5.0.5, Opera 11.50 and Firefox 5.0. Does anybody know a method of achieving this which *IS* supported by all browsers? Or is that too much to hope for?
Tony Marston
http://www.tonymarston.net
http://www.radicore.org
|
|
|