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

c++ - CPP, 'X' button listener -

shared memory - gstreamer shmsrc and shmsink with h264 data -

.net - Bulk insert via Dapper is slower than inserting rows one-by-one -