Looks like not ....
very basic table
Please dont post three word posts like this. This is not appropriate
Yes, i knew about it, but it still draws lines under the rows,
unfortunately.
/Hristo Stoyanov
On Mar 18, 2015 11:10 PM, "Jack Lukic" [email protected] wrote:
Very basic
—
Reply to this email directly or view it on GitHub
https://github.com/Semantic-Org/Semantic-UI/issues/1980#issuecomment-83353966
.
Modify the theme
Three word question, literally lol'd at Starbucks. Regardless, the OP has a point. Will we be able to have borderless tr's in the future?
Hack, that works at the moment:
Using ui very basic table class and this custom css:
.ui.table tr td {
border-top: 0px !important;
}
any updates on this? Its been several years. thanks
Got stuck in the same problem here. Instead of modifying the td, the solution was changing the th bottom border.
.ui.table tr th {
border-bottom: 0px !important;
}
Most helpful comment
Hack, that works at the moment:
Using
ui very basic tableclass and this custom css:.ui.table tr td { border-top: 0px !important; }