1
<div id="example" class="k-content">
<table id="grid" style="float: left; position: relative">
<thead>
<tr>
<th width ="310px"data-field="FileName">File Name
</th>
<th width ="290px"data-field="ID">File Identifier
</th>
</tr>
</thead>
<tbody>
@foreach (var item in Model)
{
<tr >
<td class="idRank" >
@item.FileName
</td>
<td class="idRank2" >
@item.ID
</td>
</tr>
}
</tbody>
我使用外部CSS
table#grid.k-focusable td.idRank
{ width:310px;
}
但它不適用,不能由310像素到wident,任何想法? 什麼其他的CSS的方法做,我得到的是應用
好吧,我想
有一個在
table#grid.k-focusable td.idRank { width:310px;}
由於這種
.k-focusable
寬度無需.k-focusable
類未被設置。而是嘗試
來源
2012-09-26 06:03:04
相關問題