Extra spacing after an A Tag/img tag?

后端 未结 3 1989
庸人自扰
庸人自扰 2021-01-13 11:01

Hello i\'m trying to build a table cell using div tag and while doing so. i get this extra spacing after my img a tag within the cell.

相关标签:
3条回答
  • 2021-01-13 11:31

    Try setting margin: 0 and padding: 0 on the elements that have this extra spacing. It is usually a good idea to implement some sort of CSS Reset to make sure all elements are cleared of these annoying default attributes such as margins and padding.

    0 讨论(0)
  • 2021-01-13 11:41

    Aside from the fact that you should use tables for tabular data, I think that setting display: block on the image will remove the space. If that doesn' work, try to make a jsFiddle page to show off the problem.

    0 讨论(0)
  • 2021-01-13 11:41

    That space can be removed using:

    style="display:block;"
    
    0 讨论(0)
提交回复
热议问题