搜尋

首頁  >  問答  >  主體

製表符刪除或停用內聯樣式

我將類別新增到單元格中以更改預設的 widthheight 等...。現在在操作中,儲存格仍然保持預設的內聯樣式。如果是 width

如何刪除/停用預設內聯樣式? !

 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>

P粉032649413P粉032649413243 天前323

全部回覆(1)我來回復

  • P粉242741921

    P粉2427419212024-03-30 12:43:57

    如果寬度不起作用,我更喜歡使用最小寬度

    .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比class更強大

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

    否則使用 !important 如果父類別也不能存取

    回覆
    0
  • 取消回覆