x
 
1
<!DOCTYPE html>
2
<title>My Example</title>
3
<style>
4
    #unique {
5
        background-image: url('/pix/samples/bg2.png');
6
    }
7
    div {
8
        width: 20vw;
9
        margin: 2vw;
10
        padding: 3vw;
11
        border: solid;      
12
    }
13
</style>
14
15
<div id="unique">ID</div>
16
<div>No ID</div>
17
18
<p>Note that only one element on the page can use a given ID. To style multiple elements, use a class.</p>