<html> <head> <meta charset="UTF-8"> <title>鉴本</title> <style> table { border-collapse: collapse; width: 100%; } td, th { border: 1.5px solid black; padding: 5px; } table img { max-width: 150px; height: auto; } td:nth-child(1) input, td:nth-child(2) input, td:nth-child(3) input, td:nth-child(4) input, td:nth-child(5) input, td:nth-child(6) input, td:nth-child(7) input, td:nth-child(8) input { width: 80px; } td:nth-child(9) input, { width: 300px; }这样设置为什么无法修改
时间: 2024-04-17 12:26:13 浏览: 122
在您提供的代码中,我注意到您有一个错误的CSS选择器。在最后一行代码中,您将逗号放置在了`td:nth-child(9) input`选择器后面,这导致该行代码无效。请尝试以下修改:
```html
<html>
<head>
<meta charset="UTF-8">
<title>鉴本</title>
<style>
table {
border-collapse: collapse;
width: 100%;
}
td, th {
border: 1.5px solid black;
padding: 5px;
}
table img {
max-width: 150px;
height: auto;
}
td:nth-child(1) input,
td:nth-child(2) input,
td:nth-child(3) input,
td:nth-child(4) input,
td:nth-child(5) input,
td:nth-child(6) input,
td:nth-child(7) input,
td:nth-child(8) input {
width: 80px;
}
td:nth-child(9) input {
width: 300px;
}
</style>
</head>
<body>
<!-- 表格内容 -->
</body>
</html>
```
在上述修改中,我已经修复了您的代码,并将最后一行的选择器修正为`td:nth-child(9) input`,使其能够正确地设置第九列的宽度为300px。
请将修改后的代码添加到您的HTML文件中,然后检查是否能够正确地设置列宽度。如果问题仍然存在,请提供更多详细信息,以便我可以更好地帮助您解决问题。
阅读全文