Forum Moderators: not2easy
I have noticed that many modern websites are using a very light font weight these days. (trying to look sophisticated ?)
Can any one tell me what it is ?
I have tried
font-wight:lighter; but this does not seem to work !
Is there a way to look at websites CSS like you can view the html code ?
Kind Regards
Digby
In any browser, you can View Source of the page.
Any lines that say <style type="text/css"> mark the beginning of CSS code for that page.
In addition, you'll usually find a line
<link rel="stylesheet"...
The .css file referenced in that line is the external style sheet.
Edit: (As others pointed out, it is apparently Firebug that provides the View CSS feature.)
[edited by: SteveWh at 10:47 am (utc) on Mar. 16, 2009]
font-weight:lighter
More info:
[w3.org...]
Interesting to read I always missed the fact that lighter and bolder mean to change the inherited value in a certain direction, and not set it to an absolute value. Thanks for pointing that out Simonuk!
This is the link. I recommend it 100%.
[addons.mozilla.org...]