Answers for "css make all td same width"

0

table all cells same width

<table style="table-layout: fixed; width: 100%;" >
Posted by: Guest on June-08-2021
0

full height div inside td

<table border="1" style="height:300px; width: 100px;">
 <tr><td>cell1</td><td>cell2</td></tr>
 <tr>
   <td style="height: 1px"> <!-- or 100% -->
     <div style="height: 100%; width: 100%; background-color:pink;"></div>
   </td>
   <td>long text long text long text long text long text long text</td>
 </tr>
</table>
Posted by: Guest on July-12-2021

Browse Popular Code Answers by Language