x
 
1
<!DOCTYPE html>
2
<title>My Example</title>
3
<style>
4
    .example {
5
        background-color: gold;
6
        font-size: 4vw;
7
        padding: 1vw;
8
    }
9
</style>
10
11
<p class="example">Background color applied to the 'p' element. </p>
12
<p class="example">Background color applied to the 'p' element. </p>
13
14
<div class="example">
15
  <p>Background color applied to the outer 'div' element.</p>  
16
  <p>Background color applied to the outer 'div' element.</p> 
17
</div>