FrontPage non break hyphen

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I dont want to apply nowrap to the whole para or cell, but how do I stop
someones hypernated name from splitting at the end of the line. E.g. I want
jones-smith to appear ass as one not as jones-
smith !!

Thanks
 
In this case it would be better to apply the white-space CSS to a span
tag:
Example:

<td> loads of text <span style="white-space:nowrap;">Jones-Smith</span>
more text here</td>

Browser support for white-space is limited to IE6 and later, FireFox,
Netscape 6 and later, earlier versions will ignore the attribute.
The <nobr>Jones-Smith</nobr> method will work in every current browser,
but is invalid HTML and there is a possibility that it may not work in
future browser versions.
--
Ron Symonds - Microsoft MVP (FrontPage)
Reply only to group - emails will be deleted unread.
FrontPage Support: http://www.frontpagemvps.com/
http://www.rxs-enterprises.org/fp
 
Back
Top