layui Table 设置title 字体加粗
在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>