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 Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Why does the font in my CSS appear smaller than it should

Status
Not open for further replies.

SilverStray

Programmer
Oct 25, 2001
47
AU
Hi,

I put the following CSS code in my html, but when I use it in the BODY of my web page, the font appeared much smaller than it should. This code is not a separate CSS file, but is inside my HTML.

<HTML>
<HEAD>
<TITLE>HOMEPAGE</TITLE>
<STYLE TYPE="text/css">
<!--
.bodyText {
font-family: "Arial Unicode MS";
font-size: 10px;
text-decoration: none;
}
-->
}
</STYLE>
</HEAD>
..
..


I used it in the following table and cells description, but when I do so, everything looks very small, not the actual size 10 of this font:

<TABLE class=bodyText width="80%" cellpadding="2" cellspacing="1">

How can I set it to its proper original size..?

Please help! Thanks is advance.


 
Obviously, you want 10pt, not 10px...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top