Home > Article > Web Front-end > How to set column width in html
htmlHow to set the column width: first create an HTML sample file; then create a table through the table tag; finally, set the width directly for the first row of each column.
The operating environment of this article: Windows7 system, HTML5&&CSS3 version, Dell G3 computer.
How to set the table column width in html?
Just set the width of the first row of each column directly. The default value below is the same as the first row. If you need to modify it, you can set it separately. The code below is 300 pixels for the first column. , the second column is 200 pixels;
<html xmlns="http://www.dayinmandarin.com"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>表格列宽</title> </head> <body> <table style="border:1px solid #000;width:500px;height:400px;"> <tr><td width="300px"></td><td width="200px"></td></tr> <tr><td></td><td></td></tr> </table> </body> </html>
[Recommended learning: HTML video tutorial]
The above is the detailed content of How to set column width in html. For more information, please follow other related articles on the PHP Chinese website!