开发者

How to remove separation between a table and horizontal line?

开发者 https://www.devze.com 2023-02-04 11:16 出处:网络
I have a table and bel开发者_StackOverflowow the table I have a horizontal line (<hr>). There is a vertical separation between the table and horizontal line and I would like to remove it. How ca

I have a table and bel开发者_StackOverflowow the table I have a horizontal line (<hr>). There is a vertical separation between the table and horizontal line and I would like to remove it. How can I do it? Does it comes from the table or the horizontal line or from both? By the way, I see it only in the IE. In Mozilla and Chrome there is not vertical separation between the table and the line.


First of all inspect your blocks with Firebug: https://addons.mozilla.org/hu/firefox/addon/firebug/

With this you will be able to see that which element has padding or margin. After you've found it simply give it a margin:0; property.


I believe the <hr> tag is a block element, try setting display:inline;

0

精彩评论

暂无评论...
验证码 换一张
取 消