CodeLab
Show Output
 
xxxxxxxxxx
20
 
1
<!DOCTYPE html>
2
<html lang="en">
3
<head>
4
<meta charset="utf-8">
5
<title>Effect of CSS Padding on Element Box Size</title>
6
<style>
7
    div {
8
        width: 100%;
9
        padding: 25px;
10
        background: violet;
11
    }
12
</style>
13
</head>
14
<body>
15
    <div>
16
        <h1>This is a DIV Box</h1>
17
    </div>
18
    <p><strong>Notice</strong>, the scrollbar at the bottom of the viewport.</p>
19
</body>
20
</html>
 
Switch to SQL Mode

Share this example with Facebook, Twitter, Gmail. Please give us a Like, if you find it helpful.