Home  >  Article  >  Web Front-end  >  How to set column width in html

How to set column width in html

藏色散人
藏色散人Original
2021-04-12 09:47:4114690browse

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.

How to set column width in html

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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:How to hide tr in htmlNext article:How to hide tr in html