hi,
how can i make the text in a html document static, so the text won't change his size, even if the user changes the Font-size
under "VIEW" to Big, or Large, .. ?
is there some code for it? :confused:
Printable View
hi,
how can i make the text in a html document static, so the text won't change his size, even if the user changes the Font-size
under "VIEW" to Big, or Large, .. ?
is there some code for it? :confused:
use a style with a specific font-size
e.g
<font style="FONT-SIZE: 10pt">test</font>
Yep although I would add a couple of things: You should try not to do that as what if someone has a visual imparement and can't read your site, it's not fair to them to stop them from making the text bigger. And also if you're going to use <font> you may as well use <span>, as I'm pretty sure font is dead in XHTML, or is at least deprecated.
it's deprecated in HTML 4
Ah right, and dead in XHTML?
yep :)