I'm struggling with the <style> tag and setting a base font size. I understand that unless otherwise stated the default size is "3". What I would like is to set the font size to be "2" (or -1?) throughout the whole page.
I can do it seperatly for <p> or <table> but is there a way of globally setting it to covers text in these and the rest? Currently I've got this -
I've also tried
with no change.
Am I on the right lines or what am I missing?
regards
Jason.
I can do it seperatly for <p> or <table> but is there a way of globally setting it to covers text in these and the rest? Currently I've got this -
Code:
<STYLE type="text/css">
basefont {font-size: 2;}
body {font-family: Verdana, "Times New Roman";}
</STYLE>
Code:
body {font-family: Verdana, "Times New Roman";
font-size: 2;}
Am I on the right lines or what am I missing?
regards
Jason.