<p class="p-20">Internal 20px margins top/right/bottom/left</p>
<p class="p-20-30">Internal margins of 20px top/bottom and 30px right/left</p>
<p class="p-20-30-40">Internal margins of 20px top, 30px right/left and 40px bottom</p>
xxxxxxxxxx
body {
font: 20px/1.5 sans-serif;
}
p {
background: #673ab7;
color: #fff;
}
.p-20 {
padding: 20px;
}
.p-20-30 {
padding: 20px 30px;
}
.p-20-30-40 {
padding: 20px 30px 40px;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.