easyui给DataGrid 的th添width长度

easyui给DataGrid 的th加width长度table stylewidth:500pxheight:250px idtttheadtr stylet

easyui给DataGrid 的th加width长度
<table style="width:500px;height:250px" id="tt">
      <thead>
      <tr style="text-align: center;">
      <th field="fldAppDept" width="100">账号</th>
      <th field="fldAppDept" width="100">姓名</th>
      <th field="fldAppDept" width="100">性别</th>
      <th field="fldAppDept" width="200">操作</th>
      </tr>
     
     
      <s:iterator value="userlist">
      <tr style="text-align: center;width: 100%;">
      <th field="fldAppDept" width="100"><s:property value="account"/></th>
      <th field="fldAppDept" width="100"><s:property value="name"/></th>
      <th field="fldAppDept" width="100"><s:property value="sex"/></th>
      <th field="fldAppDept" width="200">
      <a href="#">详细信息</a>
      <a href="#">删除</a>
      </th>
      </tr>
     
      </s:iterator>
      </thead>
      </table>