Responsive Tables without Alternating White-Gray Rows?
Responsive Tables without Alternating White-Gray Rows?
SiplingerKopf
Posts: 4Questions: 2Answers: 0
I have noticed that all examples for responsive tables,
except for the one using Fomantic-UI (formerly Semantic-UI),
display the rows alternately in white and gray.
Is it possible to display the other responsive tables in white,
similar to the Fomantic-UI implementation, as I do not want to use Fomantic-UI?
This question has an accepted answers - jump to answer
Answers
If you are using the default Datatbles styling make sure the
stripe
class is not included on thetable
tag. See the Default Styling docs for more details. You might need to removedisplay
and include only the styles you want. If you are using a styling framework then refer to the docs for the framework to remove the stripe class.Kevin
Thanks for pointing this out, it put me on the right track. Instead of using "display", I have to use "hover", "row-border" and of course omit "stripe".