CodeLab
Show Output
 
 
 
1
<!DOCTYPE html>
2
<html lang="en">
3
<head>
4
<meta charset="utf-8">
5
<title>Example of CSS Margin</title>
6
<style>  
7
    p.margin {  
8
        margin: 40px 80px 140px 180px;     
9
    }   
10
</style> 
11
</head>
12
<body>  
13
        <h1>This is heading.</h1>  
14
        <p class="margin">This is a paragraph</p>   
15
        <p>This is another paragraph</p>   
16
 </body>
17
</html>                            
 

Share this example with Facebook, Twitter