Replies: 4 comments
|
In html, tables are represented as cells ( |
0 replies
|
Hello,
I'm looking for a solution to hide some columns in a table on small screen.
On an old website (and first try to create a crud web app) i used a css
class on some <th> and <td> cells in my table. After an @media (max-width:
800px), the cells with the specific class were not displayed when screen
was under 800 px..
|
0 replies
|
I see! Each cell already has a class with the name of the column. However, unfortunately, at the moment, the class is not applied to the header. I'll change that. So, at the moment, you can use .Ville, th:nth-child(3) {
display: none;
}and it the next version, you'll be able to do simply .Ville {
display: none;
} |
0 replies
|
Hello,
|
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Hello all,
I would like to know how i can use class or id in a table.
I have this :
is it possible to use a specific class or id on a column, 'ville' for example ?
Thank you for the answer...
All reactions