I want to make font on a website smaller than the standard HTML 1 size (which isn't 1pt).
I tried putting 1pt, like I've seen before, but that made the text about 36pt.
I DO NOT want to use CSS, as all it does is confuses me.
Thanks in advance.
How do I use HTML to make the font size smaller than the HTML 1 size?
HTML cannot put font size into pixel (px). The %26lt;font size="1"%26gt; not means that thhe font size is just 1px (not pt), it is 9px actually. I really recommend you use CSS styles to help you, I can teach you.
%26lt;head%26gt;
%26lt;style%26gt;
BODY { font-size: 1px !Important;} (put !Important for IE problem)
%26lt;/style%26gt;
%26lt;/head%26gt;
After add in that CSS style within your %26lt;head%26gt;%26lt;/head%26gt;, every font in your website you can show it how small you want.
Reply:but !important can be overridden by a viewers internal style sheet they set up in their own browser.
another thing to is in style sheets there is no upper limit on font-size. try font-size:2000pt :)
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment