On Tue, 4 Sep 2007, Del Wegener wrote:

> Is there a CSS way to avoid using NOBR and achieveing the same result?
> Example <NOBR> 3x + 5 = 7x + 15</NOBR>

Yes:

<span style="white-space: nowrap">3x + 5 = 7x + 15</span>

Of course, you would normally use a class, e.g.

<span class="expr">3x + 5 = 7x + 15</span>

with

.expr { white-space: nowrap; }


-- 
Jukka "Yucca" Korpela, http://www.cs.tut.fi/~jkorpela/

______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to