我是java的初学者,
如何在datatable
中更改所有文本(页眉,页脚和正文)的字体系列?
我在datatables.jqueryui.css
中找不到任何关于字体系列的信息答案 0 :(得分:9)
感谢@charlietfl,
我在浏览器中使用了inspect元素,发现解决方案是在font-family
font-size
和.dataTables_wrapper
添加到dataTables.jqueryui.css
.dataTables_wrapper {
font-family: tahoma;
font-size: 13px;
direction: rtl;
position: relative;
clear: both;
*zoom: 1;
zoom: 1;
}
答案 1 :(得分:0)
我使用了以下实现,效果很好。 顺便说一下,在此示例中,我正在使用 Bootstrap 和 Ajax 调用。
<style>
.table.dataTable {
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 13px;
}
</style>
<table id="example" class="table"></table>