styles - Font-weight not changing in css -
using google webfont, can't font-weight yield results. 3 weights have names aren't specified in href link i'm not sure if name needs added.
here's portion of code:
<link href='http://fonts.googleapis.com/css?family=quicksand:400,300,700' rel='stylesheet' type='text/css'><style type="text/css"> body{ background-color: white; margin-left: 20%; margin-right: 20%; border: none; padding: 10px 10px 10px 10px; font-family: quicksand, sans-serif; font-weight: 300; }
i able working in fiddle leads me believe have font-weight overriding font-weight trying set. use either chrome or firefox's developer tools , can locate style overriding 1 trying set.
keep in mind:
- more specific styles win (id vs class example)
- styles found later in style sheet override identical styles earlier in sheet.
Comments
Post a Comment