IE中的Hr Tag - 删除边框

Mac*_*Mac 6 html css internet-explorer

在IE7及更低版本以外的其他浏览器中,hr显示hr标签周围的边框,我不希望这样.

<!--[if lte IE 7]>
<style type="text/css">
hr {
    margin: -3px 0 0 0;
    padding: 0;
    height: 19px;
    border: none;
    outline: none;
    background: url("img/split.png") center no-repeat;
}
</style>
<![endif]-->
Run Code Online (Sandbox Code Playgroud)

我试过这个解决方案,但它似乎仍然有一个边界.

它看起来像这样:

替代文字http://i46.tinypic.com/dpdabm.jpg

我怎么摆脱它?

Mar*_*arc 6

请参见http://webdesign.about.com/od/beginningcss/a/style_hr_tag.htm

似乎没有好办法解决这个问题,只有黑客攻击(使用周围的div).