Jump to content

Is it possible to collapse a table and hide the table lines?


stargazzn

Recommended Posts

I just found the table collapse feature and I'm wondering if I can also hide the table lines? It seems I can not. Or I have not found it yet.

 

table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
Thanks!
Link to comment
Share on other sites

If you want to hide the lines then why assign a border? Compare...

table, th, td {    border: 1px solid black;    border-collapse: collapse;}

...compared to...

th, td {    border: 1px solid black;}
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...