alernerdev
alernerdev

Reputation: 2064

How to create semantic CSS table/rows without borders?

the closest I have come is to use "very basic" attributes, but the rows still have borders between them. Any ideas? Thanks

Upvotes: 6

Views: 5741

Answers (1)

Naeiim Shiri
Naeiim Shiri

Reputation: 84

based on https://github.com/Semantic-Org/Semantic-UI/issues/1980

Using ui very basic table class and this custom css:

.ui.table tr td { border-top: 0px !important; }

Upvotes: 7

Related Questions