该楼层疑似违规已被系统折叠 隐藏此楼查看此楼
使用盒子模型画一个表格,在其他浏览器都可以正常显示,唯有IE内核无法正常显示,求解!!!!!代码如下:
按钮*{
margin: 0;
}
.row1{
height: 40px;
line-height: 40px;
display: -moz-box;
display: -webkit-box;
display: -ms-box;
display: box;
-moz-box-orient:horizontal;
-webkit-box-orient:horizontal;
-ms-box-orient: horizontal;
box-orient:horizontal;
text-align: center;
font-size: 16px;
}
.flex{
border: 1px solid #fff;
font-weight: bold;
}
.col1{
width:50%;
background-color: #FEE210;
}
.col2{
width:50%;
background-color: #5DE210;
}
.col3{
width:50%;
background-color: #108DE0;
}
.col4{
width:50%;
background-color: #D68DE0;
}