我想在表格中发布一些表格td宽度,BG颜色不同。我设计了以下css,它在Chrome和Fire fox中运行良好,但没有在Internet Explorer中提供所需的输出。在这方面,任何人都可以帮助我。
HTML:
<td class="td_1">Games</td>
<td class="td_2">Sports</td>
CSS:
.td_1 {
width:200px;
height:50px;
max-width:200px;
min-width:200px;
max-height:50px;
min-height:50px;
background-color: yellow;
color: red;
}
.td_2 {
width:300px;
height:50px;
max-width:300px;
min-width:300px;
max-height:50px;
min-height:50px;
background-color: blue;
color: white;
}
答案 0 :(得分:0)
世界上没有办法让你的颜色出错。请注意您的Internet Explorer的用户代理样式不会覆盖您的样式表。尝试使用reset.css表重置所有IE的默认值。
首先在所有其他样式表之前包含reset.css。你可以免费获得Here