/ Published in: CSS
This IE8 bug causes the top half of a fieldset's border to not show when it contains a <legend> that is hidden with display: none;
The solution comes from nicksnell.co.uk. Be sure to put the following CSS into an IE8 conditional comment because it will fuck with other browsers' rendering.
Expand |
Embed | Plain Text
<!--[if IE 8]> legend { display: block !important; height: 0; margin: 0; padding: 0; width: 0; visibility: hidden; } <![endif]-->
You need to login to post a comment.
