Click to See Complete Forum and Search --> : Style Type="text/css"> QUESTION


Launchnet
04-09-2006, 10:08 PM
I have the following and it works.

<style type="text/css">
body, table {
font-family: arial,
font-size:100%;
color: "#b00e00";
background:#fff;
}
</style>

On font-size: 100% how do I change it to size="1"

Also, how do I set all the text to be <B> bold

NogDog
04-09-2006, 10:29 PM
I have the following and it works.

<style type="text/css">
body, table {
font-family: arial,
font-size:100%;
color: "#b00e00";
background:#fff;
}
</style>

On font-size: 100% how do I change it to size="1"
font-size: xx-small; (see http://www.w3.org/TR/CSS21/fonts.html#propdef-font-size )

Also, how do I set all the text to be <B> bold
font-weight: bold; (see http://www.w3.org/TR/CSS21/fonts.html#propdef-font-weight )

David Harrison
04-09-2006, 11:21 PM
Moved to the CSS section.

I wouldn't recommend setting the font size to 1 (xx-small), it would make the text very difficult to read for a lot of people, and really, what's the use of having content that people can't even see?