layui Table 设置title 字体加粗

在layui.css中加样式 : .layui-table th{font-weight: bold;} ,或者直接加在网页中即可。 style .layui-table th{ font-weight: bold;} /stylebodytable id="demo" lay-filter="demo" class="layui-hide"/table/body

 在layui.css中加样式 :  .layui-table th{font-weight: bold;} ,或者直接加在网页中即可。
<style>
    .layui-table th{
        font-weight: bold;
}
 </style>
<body>
<table id="demo" lay-filter="demo" class="layui-hide"></table>
</body>

 
 

本文标题为:layui Table 设置title 字体加粗

基础教程推荐