How can I make “display: block” work on a in IE?

后端 未结 5 1631
鱼传尺愫
鱼传尺愫 2020-12-09 01:24

Is there anything I can do to make IE display table cells as actual blocks?

Given this style:

table,tbody,tr,td,div {
  display: block;
  border: 1px         


        
5条回答
  •  遥遥无期
    2020-12-09 02:19

    make it display:table-row; instead of display:block It will work like it is supposed to

提交回复
热议问题