|
Posted by dorayme on 11/08/06 00:21
In article
<1162941520.720167.230150@h54g2000cwb.googlegroups.com>,
"jambiani" <mrievers@gmail.com> wrote:
> Why cant i get my text to be 500 in boldness, my code
> style="font-weight: 500;"
>
> It will do if i write Bold, but not in numbers 100, 200, 300 .......
>
> It says on www.w3schools.com but i cant get it to work.
>
If you have
h1.one { font-weight: 100 }
h1.two { font-weight: 200 }
h1.three{ font-weight: 300 }
etc
in your stylesheet
and
<h1 class="one">This text</h1>
<h1 class="two">This text</h1>
<h1 class="three">This text</h1>
etc
in your HTML
you will see the differences.
Remember, you are not styling for font-size here.
--
dorayme
[Back to original message]
|