Forum Moderators: not2easy
body {background:#ffffcc; font-family:Verdana; font-size:12pt}
p {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12pt;
font-style: normal;}
Thanks Ian
Try giving the table cells (or the paragraphs) a class and defining the font in the class, in case the font is being affected by a cascade:
.normaltext {
font : 12pt Verdana Geneva Arial Helvetica sans-serif;
}
Generally it can be quite useful to set some global css at the beginning of a stylesheet:
div, p, td{
font : 12px Verdana Geneva Arial Helvetica sans-serif;
}
Won't mention the use of pts...
[w3.org...]
Not trusting browsers very much, I generally use a combination of em's and percentages. You might find this thread useful:
[webmasterworld.com...]
thenoodleincident has a pretty comprehensive set of font size test images across different techniques and browsers.
Adam