blob: 59b1c07f7943a380752d0fb01a68b3ff48d3c8d4 [file] [log] [blame]
<HTML>
<HEAD>
<TITLE>Examples of margins, padding, and borders</TITLE>
<style type='text/css'>
p.classA {
color: white;
background: blue;
margin: 0px 0px 0px 0px;
padding: 24px 24px 24px 24px;
}
p.classB {
color: white;
background: blue;
margin: 0px 0px 0px 0px;
padding: 24px 24px 24px 24px;
border-style: dashed;
border-width: medium;
border-color: lime;
}
</style>
</HEAD>
<BODY>
<p>before</p>
<p class='classA'>first paragraph</p>
<p class='classB'>second paragraph.</p>
<p>after</p>
</BODY>
</HTML>