表头显示小

时间:2013-05-02 11:01:34

标签: html css html-table

我有一个带有标题的小桌子,在我添加了一些输入到表格的行之后,标题已开始不占用表格的整个宽度。任何建议?真的很感激。

HTML

<table id = "table">
<th id = "header">HEADER</th>
<tr id = "row">
    <td><input type = "text" id = "det_0_0"></td>
    <td><input type = "text" id = "det_0_0"></td>
    <td><input type = "text" id = "det_0_0"></td>
</tr>
<tr id = "row">
    <td><input type = "text" id = "det_0_0"></td>
    <td><input type = "text" id = "det_0_0"></td>
    <td><input type = "text" id = "det_0_0"></td>
</tr>
<tr id = "row">
    <td><input type = "text" id = "det_0_0"></td>
    <td><input type = "text" id = "det_0_0"></td>
    <td><input type = "text" id = "det_0_0"></td>
</tr>
</table>

CSS

#table{
width:30%;
height:200px;
margin-left:auto;
margin-right:auto;
margin-top:50px;
border:2px inset rgb(0,0,0);
border-collapse:collapse;
}
#header{
height:25px;
max-height:25px;
text-align:center;
font-size:16px;
width:100%;
font-family:Georgia, serif;
background-color:rgb(30,114,41);
color:rgb(245,245,250);
border-bottom:2px inset rgb(0,0,0);
}
#row{
font-size:14px;
font-family:Georgia, serif;
word-wrap:break-word;
background-color:rgb(255,255,255);
}

1 个答案:

答案 0 :(得分:0)

使用

<th id = "header" colspan="3">HEADER</th>