If you are dynamically creating an HTML table with number of table columns at runtime with equal sizes.
You have to do like this,
<style type="text/css">
.table {
width:100%;
}
.table td {
width:1000px;
}
</style>
<table class="table">
<tr>
<td>one</td>
<td>two</td>
<td>three</td>
<td>four</td>
<td> five</td>
<td> six </td>
</tr>
</table>
Post your comments / questions
Recent Article
- Fix-Gradient effect turning to gray in after effects
- How to blur an image in python?
- ModuleNotFoundError: No module named 'whois' in Python GoviralHost Without Terminal
- How to Convert Image to Pencil Sketch in Python?
- AttributeError: module 'urllib' has no attribute 'request' - Python
- How to Extract audio from video files using python?
- PermissionError: [Errno 13] Permission denied: 'shampoo_sales.csv' - Python
- [WinError 145] The directory is not empty: 'FolderPath' - Python
Related Article