Reputation: 73
I am trying to save make a my table responsive, How can I do it ?
Upvotes: 0
Views: 842
Reputation: 665
To make table responsive you have to use relative value instead of fixed value : The example below can explain more :
Responsive table
table {
width: 100%; /* Relative Value */
}
Non-Responsive Table
table {
width: 1200px; /* Fixed Value */
}
Upvotes: 1