html - Bootstrap table with no padding/margin? -


i have table:

<table class="table table-bordered table-condensed col-md-12">   <thead>     <tr>       <td>input</td>     </tr>   </thead   <tbody>     <tr>       <td><input type="text" /></td>     </tr>   </tbody> </table> 

i use bootstrap framework , looks this:

enter image description here

how can stretch input width & height fit table cell?

i'm using css on input: width: 100%
i've tried css on td: padding: 0; margin: 0;

as @araz comment:

tr td{   padding: 0 !important;   margin: 0 !important; } 

Comments

Popular posts from this blog

python - How to insert QWidgets in the middle of a Layout? -

python - serve multiple gunicorn django instances under nginx ubuntu -

module - Prestashop displayPaymentReturn hook url -