I'm trying to replace all of the hard coded formatting in my pages with CSS
classes.
The one I cant seem to get right is the 'nowrap' for the text in a table.
what attribute do I use so my text in my tables do not wrap?
Thanks,
Scott<-
Try this .......
---------------- start of Code -------------------
<HTML>
<HEAD>
<style>
.got
{
white-space:nowrap;
}
</style>
</HEAD>
<body style="margin:0px;background-color:cyan;">
<table width= 10><tr><td class=got>Please do not wrap me </td></tr></table>
</body>
</HTML>
------------------- end of code ---------------
Hope that helps.
Kiran Math