21
Views
3
Comments
Solved
How to make container fulfill all td column?
Question

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


2022-07-03 17-24-08
Sourabh sharma
Solution

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.

2025-01-09 14-56-57
IQ78

Thank you, Sir!

I try to put semi colon also before important:

"padding:0px; !important;"

and it works like a charm!

2024-05-08 06-29-37
Prince Aadil Khan Panwar
Solution

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.

thanks 

Prince

2022-07-03 17-24-08
Sourabh sharma
Solution

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.

2025-01-09 14-56-57
IQ78

Thank you, Sir!

I try to put semi colon also before important:

"padding:0px; !important;"

and it works like a charm!

2024-05-08 06-29-37
Prince Aadil Khan Panwar
Solution

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.

thanks 

Prince

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.