Hi there,
I try to make container fulfill its <td> column, but no luck, with this style:
"width:100%;height:100%;"
How to do it?
thanks
Hi @Indra Budiantho,
there is Padding applied on td so you need to overwrite padding applied on TD
.table-row td{
padding:0px !important;
}
Thanks,
Sourabh Sharma.
Thank you, Sir!
I try to put semi colon also before important:
"padding:0px; !important;"
and it works like a charm!
hi @Indra Budiantho
try this css, and you can modify from where you want to.
.table-row th, td { padding-top: 10px; padding-bottom: 20px; padding-left: 30px; padding-right: 40px;}
or just as @Sourabh sharma suggested.
Prince