来自jeasy-ui的DataGrid有自己的表头和表体数据字体大小。
我有3个DataGrids,但我需要为2个DataGrids设置默认字体大小,但是对于1个DataGrid,我必须指定font-size显式。
我该怎么做?
<table class="easyui-datagrid" data-options="singleSelect:true,fitColumns:true" style="height:180px;" id="alertDescDG">
<thead>
<tr>
<th data-options="field:'label', width:200"></th>
<th data-options="field:'value', width:200"></th>
</tr>
</thead>
</table>
答案 0 :(得分:1)
根据this post from the easyui forum。:)
,您可以将数据打包在<span>
标记中
<table class="easyui-datagrid" title="Basic DataGrid" style="width:700px;height:250px">
<thead>
<tr>
<th data-options="field:'itemid',width:80">Item ID</th>
<th data-options="field:'productid',width:100"><span style="font-weight:bold">Product</span></th>
</tr>
</thead>
</table>
答案 1 :(得分:0)
只需将其添加到样式属性:
style="font-size:24px;"
或在ems:
style="font-size:1.5em;"