Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

font-size: 11px; vs. font-size: 12px; Help

Status
Not open for further replies.

ndg

Programmer
Jul 5, 2000
3
US
In Netscape, font-size:11px is REAL small compared to font-size: 12px;. Is this something we can fix? Any replies is appreciated.
Thanks.


<style>
.class11 {
font-family: verdana;
font-size: 11px;
}
.class12 {
font-family: verdana;
font-size: 12px;
}
</style>
<p class=&quot;class11&quot;>this is 11px;</p>
<p class=&quot;class12&quot;>this is 12px;</p>
 
have you tried using pt instead of px. Defining point size is better especially with the 11 and 12 point fonts. You will not notice much of a difference.

hope this helped.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top