DataTables如何设置特定Td的宽度

时间:2015-01-09 12:43:48

标签: jquery css datatables

我使用的是最新版本的DataTables.

我有一个简单的问题,但我还没有解决它。我只想为spesific td设置一个宽度。

这是我的代码:

    $(document).ready(function () {
        $('#example').dataTable({
            "bLengthChange": false,
            "bPaginate": false,
            "bInfo": false,
            "bFilter": false,
            "aaSorting": [],
            "sDom": '<"top">rt<"bottom"flp><"clear">'
            ,

        });
    });
</script>

 <style>


     #myid{
  text-align: right;
  background: #b6Cfe5;
  width: 200px;

 }

</style>

我的td

 <td   id=myid "> Bla Bla</td>
 <th   ">Bla Bla</th>

我想将宽度200px设置为myid td。我该如何解决这个问题?

enter image description here

0 个答案:

没有答案