我在桌子周围设置边框和轮廓。它在最新的 IE 和 Firefox 中运行良好,但 Chrome 也在我的标题周围加上大纲。在 IE 和 Firefox 中,大纲只显示在桌子周围,这是我想要的。如何在 Chrome 中解决此问题?
演示:http: //jsfiddle.net/R7aTq/17/
HTML
<table align="center" cellspacing="1" class="homepagemodule report" id="trades">
<caption><span>Pending Trades</span></caption>
<tbody>
<tr>
<th>Currently Outstanding Trades</th>
</tr>
<tr class="oddtablerow">
<td>
<ul>
<li>0 trades proposed by me to others</li>
<li>0 trades proposed by others to me</li>
<li><a href="http://football21.myfantasyleague.com/2013/options?L=56019&O=05">View trades now</a></li>
</ul>
</td>
</tr>
</tbody>
</table>
CSS
表格标题在某些浏览器中出现在轮廓内,在其他浏览器中出现在外边。
caption {
color: #333;
font-weight: 400;
font-size: 12pt;
background: none;
text-align: center;
}
.report {
width: 300px;
background: #ccc;
border: 2px solid #fff;
outline: 1px solid #000;
}