Forum Moderators: not2easy
I know this is probably REALLY basic, but I am really bad at CSS- so accept my apologies!
I want to have one line that has two different font sizes... but does not start a new line where the font changes size. The CSS code is pretty easy- I got that:
.link_num (
display:inline;
font-size: 10px;
}
my question is how to call this so it does not make a new line. I tried <P CLASS=link_num> or <DIV CLASS=link_num>, and that works in IE, but made a new line in Netscape.
Thanks!
Dave
<p>blah blah<span class="link_num">blah blah in different font</span>blah blah</p>
I am a bit surprised, however, that using "display: inline" didn't do the trick. Which version of Netscape are you testing on?