How can i adjust the height and width of pagination buttons in jquery datatable

拜拜、爱过 提交于 2021-01-28 03:24:58

问题


how can i resize this highlighted buttons all of them?

i want to make it smaller in size.


回答1:


i just done it by inspecting the button element from firefox browser.. and just overwrite that particular property with "!important" keyword in style tag. i attached the sample image.

<style>
    .dataTables_wrapper .dataTables_paginate .paginate_button
    {
        min-width: 0.2em; !important
    }
    </style>


来源:https://stackoverflow.com/questions/60181294/how-can-i-adjust-the-height-and-width-of-pagination-buttons-in-jquery-datatable

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!