I have an CSS like
DIV.header_links
{
float:right; font-family:"Trebuchet MS" arial; font-size:12px; margin-top:19px; margin-bottom:19px;
width:100px; background-color:blue; text-align:center;
}
Now the tag <DIV class = "header_links"> has a wrapper DIV around it which has height of 50px
- Is it safe to assume that the inner DIV ie
DIV.header_linkswill not overflow. - Should
margin-top:19px, margin-bottom:19px and font-size:12pxgive a sum of 50 px?
