html - Missing top and bottom border in IE7 -
I have a problem with IE7 limits. For some reason the limit is displayed only on left and right side:
IE7, incorectly renders:
FF renders correctly: < / P>
Use of this CSS:
. Tags {background: #fff; Border: 1 px solid # D8 DFE; Padding: 5px; Margin-left: 5px; Color: # 3B5998; Font-size: 14px; }
What am I doing?
Most likely limits are cut from the height of the container to .tags
CSS looks ok for .tags a
.
Note that since and gt;
is an inline element, you can not set it to high altitude (unless you set it to display: block
). Due to the different fonts provided by different browsers, the difference in height is most likely. Also see for Safari which gives fonts thick render (more pixels) compared to all other browsers.
Comments
Post a Comment