HTML Element Style How to - Stop stretching Table inside div








Question

We would like to know how to stop stretching Table inside div.

Answer


<!DOCTYPE html>
<html>
<head>
</head><!--from  w  w w  . j  ava2 s .c om-->
<body>
  <div style="width: 880px; overflow: scroll; background-color: green;">
    <table style="background-color: red;">
      <tr>
        <td>one</td>
        <td>two</td>
      </tr>
    </table>
  </div>
</body>
</html>

The code above is rendered as follows: