开发者

Why jQuery UI classes not working on table

开发者 https://www.devze.com 2023-03-24 13:12 出处:网络
Here is my table, and using ui-corner-all i want to set table corners, but couldn\'t get it rounded. Here is my html:

Here is my table, and using ui-corner-all i want to set table corners, but couldn't get it rounded. Here is my html:

<table class="ui-widget ui-widget-content ui-corner-all" style="width: 705px">
 <thead>
  <tr>
<th class="ui-state-default ui-th-column ui-th-ltr" style="width: 35px;">
No
</th> 
<th class="ui-state-default ui-th-c开发者_Go百科olumn ui-th-ltr" style="width: 35px">
Description
</th>
</tr>
<tr id="3"> 
<td>
1
</td>
<td>
Informaton
</td>
</tr>
</thead>
</table>

Why it is not working? I tested this class ui-corner-all with div, with div it is lookig good, why not with table?


You need to add style="display:block" to the table. For some reason the corners will not round on a traditional table.


This might help: http://jquery.malsup.com/corner/

0

精彩评论

暂无评论...
验证码 换一张
取 消