css 制表符删除或禁用内联样式

dsekswqp  于 2022-12-15  发布在  其他
关注(0)|答案(2)|浏览(125)

我在单元格中添加了类来改变默认的widthheight,等等....现在在操作中,单元格仍然保持默认的内联样式。

我怎样才能remove/disable默认内联样式?!

var tabledata = [
    {id:1, name:"Oli Bob", age:"12", col:"red", dob:""},
    {id:2, name:"Mary May", age:"1", col:"blue", dob:"14/05/1982"},
    {id:3, name:"Christine Lobowski", age:"42", col:"green", dob:"22/05/1982"},
    {id:4, name:"Brendon Philips", age:"125", col:"orange", dob:"01/08/1980"},
    {id:5, name:"Margret Marmajuke", age:"16", col:"yellow", dob:"31/01/1999"},
 ];
 
 var table = new Tabulator("#example-table", {
    data:tabledata, //assign data to table
    columns:[ //Define Table Columns
    {title:"Name", field:"name", cssClass:"custom-width"},
        {title:"Name", field:"name"},
        {title:"Age", field:"age", hozAlign:"left", formatter:"progress"},
        {title:"Favourite Color", field:"col"},
        {title:"Date Of Birth", field:"dob", sorter:"date", hozAlign:"center"},
    ],
});
.custom-width{
  width:150px
}
<link href="https://unpkg.com/tabulator-tables@5.4.3/dist/css/tabulator.min.css" rel="stylesheet">
<script type="text/javascript" src="https://unpkg.com/tabulator-tables@5.4.3/dist/js/tabulator.min.js"></script>

<div id="example-table"></div>
ctehm74n

ctehm74n1#

如果宽度不起作用,我更喜欢使用最小宽度

.custom-width{
   min-width: 200px;
}

它的工作良好,否则你可以检查以下选项.
如果您希望限制宽度,那么您还可以将max-width与min-width一起使用

.custom-width{
   min-width: 200px;
   max-width: set max width

}

如果样式不适用,则可以使用CSS属性
!重要

.custom-width{
    width: 150px !importnat;
}

如果类不是访问样式,则可以使用id,因为id功能更强大

#custom-width{
    // your code
}

如果不想使用!important,则可以使用父标记/ ClassName访问

.parent-class .custom-width{
  // Your Code
}

如果不能通过父类访问,则可以通过id访问。因为id比类更强大

#id .custom-width{
    width: 150px;
}

否则使用!重要信息如果父类也不能访问

l2osamch

l2osamch2#

尝试使用@layers创建新层并覆盖所有默认值

相关问题