Semantic-Org / Semantic-UI

Semantic is a UI component framework based around useful principles from natural language.
http://www.semantic-ui.com
MIT License
51.11k stars 4.94k forks source link

Table without Border #6964

Open varathar53 opened 4 years ago

varathar53 commented 4 years ago

Hi

I was trying to remove the border in the semantic ui react basic but it doesnt work . Can u tell me how can I manage to remove the whole border?

Name Status Notes
John Approved None
Jamie Approved Requires call
Jill Denied None

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

pedrowindisch commented 4 years ago

I'm a bit late, but I removed the whole border, from all the table children and the table itself, this way:

.ui.table * {
  border: 0px !important
}