这样设置后列宽并未变化
时间: 2024-04-13 14:31:24 浏览: 128
抱歉,我之前给出的代码是用于设置表格列的宽度,但是并未在你的代码中指定具体的列。要实现自由设置表格列宽度,你需要对每个 `<th>` 或 `<td>` 元素都添加相应的 `style` 属性来设置宽度。
以下是示例代码,可以根据你的需求自由设置每个列的宽度:
```html
<tr>
<td style="width: 100px;" contenteditable="true"><input type="text" oninput="filterTable(0)" placeholder="工艺膜层"></td>
<td style="width: 120px;" contenteditable="true"><input type="text" oninput="filterTable(1)" placeholder="AOI Step"></td>
<td style="width: 80px;" contenteditable="true"><input type="text" oninput="filterTable(2)" placeholder="不良类型"></td>
<td style="width: 90px;" contenteditable="true"><input type="text" oninput="filterTable(3)" placeholder="Layer(Code)"></td>
<td style="width: 80px;" contenteditable="true"><input type="text" oninput="filterTable(4)" placeholder="Type"></td>
<td style="width: 70px;" contenteditable="true"><input type="text" oninput="filterTable(5)" placeholder="Dpet"></td>
<td style="width: 80px;" contenteditable="true"><input type="text" oninput="filterTable(6)" placeholder="Subcode"></td>
<td style="width: 120px;" contenteditable="true">Code描述</td>
<td style="width: 150px;" contenteditable="true">Image1</td>
<td style="width: 150px;" contenteditable="true">Image2</td>
<td style="width: 150px;" contenteditable="true">Image3</td>
<td style="width: 150px;" contenteditable="true">Image4</td>
<td style="width: 150px;" contenteditable="true">Image5</td>
<td style="width: 150px;" contenteditable="true">Image6</td>
<td style="width: 100px;" contenteditable="true">判定细则</td>
</tr>
```
在上述代码中,我根据每个列的内容和需求设置了不同的宽度。你可以根据实际情况调整每个列的宽度值。
请确保将以上代码应用到你的表格中,并且没有其他的 CSS 规则影响了列宽度。如果还有其他问题,请随时向我提问。
阅读全文