Line-height Example
small snippet to show the behavior of line-height and padding.
HTML
<div id="parentBox">
</div>
CSS
#parentBox{
position: absolute;
top: 10px;
left: 10px;
height: 140px;
width: 280px;
background: #eaeae2;
border: 2px solid #9d9fa2;
border-raidus: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-moz-box-shadow: 2px 2px 2px #ccc;
-webkit-box-shadow: 2px 2px 2px #ccc;
box-shadow: 3px 3px 3px #ccc;
}