Ajax Loader
×

Font-weight:bolder

font-weight:bolder for fonts with multiple weights.

http://paulradzkov.com/2014/font-weight_bolder/

HTML
<!doctype html>
1
<!doctype html>
2
<html lang="en">
3
<head>
4
  <meta charset="UTF-8">
5
  <title>Document</title>
6
  <link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700,800&amp;subset=latin' rel='stylesheet' type='text/css'>
7
</head>
8
<body>
9
  <h1>Header with <strong>nested <strong>strong</strong> inside</strong> </h1>
10
  <p>Lorem ipsum <strong>dolor sit amet</strong>, consectetur adipisicing elit. Explicabo temporibus eos voluptatibus earum quasi quo magnam officia quidem odio dolorem. <strong>Quasi <strong>voluptates nesciunt illo ea <strong>sapiente impedit</strong> officiis</strong> ipsum eum.</strong></p>
11
    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Explicabo temporibus eos voluptatibus earum quasi quo magnam officia quidem odio dolorem. Quasi voluptates nesciunt illo ea sapiente impedit officiis ipsum eum.</p>
12
  <p>This is blockquote:</p>
13
  <blockquote>
14
        <p>Lorem <strong>dolor sit amet</strong>, consectetur adipisicing elit. Explicabo temporibus eos voluptatibus earum quasi quo magnam officia quidem odio dolorem. <strong>Quasi voluptates nesciunt illo ea <strong>sapiente impedit</strong> officiis ipsum eum.</strong></p>
15
    <cite>Source of the blockquote</cite>
16
  </blockquote>
17
  
18
</body>
19
</html>
 
CSS
body {
1
body {
2
  font-family: 'Open Sans', sans-serif;
3
  font-weight: 300;
4
  padding: 4em;
5
}
6
 
7
h1, h2, h3, h4, h5, h6 {
8
  font-weight: 400;
9
}
10
 
11
blockquote {
12
  font-weight: bolder;
13
}
14
 
15
strong, b {
16
  font-weight: inherit;
17
}
18
 
19
strong, b {
20
  font-weight: bolder;
21
}
 

Font-weight:bolder

CSSDeck G+