When working with HTML5, how do I define a specific width for a table cell? Many of the <col>
properties that were present in HTML4 are no longer applicable in HTML5.
Just to clarify, I am aware that I can use <td style="width:150px">
, but this only sets a minimum width for the column. Regardless of the content within the cell, I want the width to always be fixed at 150px.