I am trying to create a table using . i have set table width as 100% .
when i set the width of the table as 100% and above the horizontal scrollbar doesnot work.. can some body help me to solve this. Help appreciated.
HTML:
table {
width: 100%;
border-collapse: collapse;
}
td {
border: 1px solid black;
}
<table style="width: 100%;">
<tr>
<td style="width: 50%">50=50</td>
<td style="width: 50%">50 + 50 =100</td>
<td style="width: 30%">50 + 50 +30 =130(this td 30% need to horizontal scrollbar)</td>
</tr>
</table>