x
 
1
<!DOCTYPE html>
2
<title>Example</title>
3
<style>
4
    .outer {
5
        border: solid;
6
        width: 280px;    
7
    }
8
    .inner {
9
        background: gold;
10
        margin: 40px;
11
    }
12
</style>
13
14
<div class="outer">
15
    <div class="inner">This text has a margin of 40 pixels on all four sides. It is nested within a 'div' with a border to make it easier to see the effect of the margin.</div>
16
</div>