1

我尝试将overflow:auto;and添加overflow-x:auto;到我的<table>元素中,但这仍然不起作用。有任何想法吗?

这是我的网页:

http://www.whiterootmedia.com/database/dusty_arlia/jquery_cdns.html

这是我的代码:

<table class="yellow_table"  style="overflow:auto; overflow-x:auto;">
<tr>
<th>Host</th>
<th>Location</th>
</tr>

<tr>
<td>Google</td>
<td class="left_aligned_red_cell">https://developers.google.com/speed/libraries/devguide#jquery</td>
</tr>

<tr>
<td>jQuery.com</td>
<td class="left_aligned_red_cell">http://code.jquery.com/</td>
</tr>

<tr>
<td>Microsoft</td>
<td class="left_aligned_red_cell">http://www.asp.net/ajaxlibrary/cdn.ashx#jQuery_Releases_on_the_CDN_0</td>
</tr>

<tr>
<td>CDNJS</td>
<td class="left_aligned_red_cell">http://cdnjs.com/#jquery</td>
</tr>

</table>
4

1 回答 1

4

将表格包裹在一个 div 中,然后交给overflow:auto该 div。

于 2013-07-11T15:56:38.457 回答