Option to remove the thick bottom border from `thead` and top border from `tfoot` in table element
See original GitHub issuePrerequisites
- I have searched for duplicate or closed feature requests
- I have read the contributing guidelines
Proposal
There should be an option to remove the thick glaring dark bottom border from thead
and top border from tfoot
in the table element.
Motivation and context
Not everybody will like this. I have updated a big project (which has hundreds of tables) to bootstrap 5.1.3. Now I need to remove the thick glaring dark bottom broder from thead
and the top border from tfoot
in the table element.
Right now, how can I remove these borders using custom CSS? Please help me.
Issue Analytics
- State:
- Created 2 years ago
- Reactions:7
- Comments:12 (1 by maintainers)
Top Results From Across the Web
Examples of table borders and rules - W3C
A complex table head, but no rules in the body. thead { border-top: solid thick; border-right: blank; /* prevent colgroup border */ border-left:...
Read more ><tfoot>: The Table Foot element - HTML - MDN Web Docs
This attribute specifies the vertical alignment of the text within each row of cells of the table footer. Possible values for this attribute...
Read more >How to remove only bottom border on specified row in html table
I have simple html table on which I want to remove bottom border of tr on specific row. The table <table cellpadding="5"> <thead>...
Read more >tfoot in my table has a border I cannot get rid of - Treehouse
I created a table that has a border. The tfoot (or table footer) has a border as well and I do not want...
Read more >How to remove a border — DataTables forums
I tried border: none !important and other ways but it didn't change. It comes fro this code: // Setup - add a text...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@TanvirArjel
This is the CSS that adds the borders
You may use the following to remove them
So in my case it has to be a
--bs-gray-600
for being the same assolid gray
. Thnx!