我想有一个简单的表组成的7列和x行(星期一,…,星期日)&1 - 365我想背景颜色的col-saturday和col-sunday是红色的
这是我的CSS(外部,在同一个文件夹中)的外观:
*{
background-color:black;
color:white;
}
table{
width:100%;
}
th,td{
border:2px solid white;
border-collapse:collapse;
background-color:black;
}
tr:hover td{
background-color:green;
}
这是我的代码看起来像表:
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Homepage</title>
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="stylesheet" href="styless.css">
</head>
<body>
<table>
<colgroup>
<col span="5">
<col span="2" **style="background-color:red"**>
</colgroup>
<tr>
<th>Monday</th>
<th>Tuesday</th>
<th>Wednesday</th>
<th>Thursday</th>
<th>Friday</th>
<th>Saturday</th>
<th>Sunday</th>
</tr>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
<td>5</td>
<td>6</td>
<td>7</td>
</tr>
</table>
</body>
</html>
how it looks like; no red background-color
我不明白为什么太阳和太阳不会是红色的。我认为内联样式具有最高的优先级,或者我错过了什么?
当我从我的代码中取消链接.css时,它看起来像这样:
.css unlinked; red background-color
2条答案
按热度按时间zvokhttg1#
因为这不是你的要求中必须的,我会在没有
<colgroup>
的情况下完成它,并通过CSS实现所有内容,所以在我看来你有更多的灵活性。关键是选择最后两个子元素。您可以通过使用:nth-child(n)
选择器来实现这一点,如:nth-child(-n+2)
。看一下,希望有帮助。rks48beu2#
td在colgroups中。因此,td的每个直接样式(即使在单独的表中)都将优先于每个colgroup样式。
尝试以下操作:
或者尝试@Dimava建议,它会保存你的合作。