gpt4 book ai didi

html - 有人能告诉我为什么我的 div 样式不起作用吗

转载 作者:太空宇宙 更新时间:2023-11-04 07:31:35 24 4
gpt4 key购买 nike

我的 ID #kiwi 似乎无效。谁能解释一下为什么它不起作用?我一直在寻找一些帮助,但找不到。当我也尝试对其进行分类时,它甚至不起作用。

<head>
<title>this is the title sucker</title>

<style>
#kiwi {background-color:green;}
</style>
</head>

<body>
<table border="1">

<tr>
<th colspan="3">Statistics</th>
</tr>

<tr>
<th colspan="1">Car model name</th>
<th colspan="0">Vegetables</th>
<th>Delicious Fruits</th>
</tr>


<div id="kiwi">
<tr>
<td>Jaguar</td>
<td>Tomato</td>
<td>Kiwi</td>
</div>
</tr>
<tr>
<td>BMW</td>
<td>Potato</td>
<td>Apples</td>
</tr>
<tr>
<td>AUDI</td>
<td>Cabbage</td>
<td>Watermelon</td>
</tr>

</table>
</body>

最佳答案

您应该将 id 分配给 <tr>标记而不是将其放在 div 中

这个有效:

<head>
<title>this is the title sucker</title>
<style>
#kiwi {background-color:green;}
</style>
</head>

<body>
<table border="1">

<tr>
<th colspan="3">Statistics</th>
</tr>

<tr>
<th colspan="1">Car model name</th>
<th colspan="0">Vegetables</th>
<th>Delicious Fruits</th>
</tr>

<tr id="kiwi">
<td>Jaguar</td>
<td>Tomato</td>
<td>Kiwi</td>

</tr>

<tr>
<td>BMW</td>
<td>Potato</td>
<td>Apples</td>
</tr>
<tr>
<td>AUDI</td>
<td>Cabbage</td>
<td>Watermelon</td>
</tr>

</table>
</body>

关于html - 有人能告诉我为什么我的 div 样式不起作用吗,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49350096/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com