我正在尝试一种简单的方法来改变响应表的悬停颜色,但失败了。
我尝试将CSS链接但失败了。
我是否需要添加更多CSS标签才能实现这一目标。
请你帮我理解我的方法有什么问题。
这是我的代码:
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script>
.table-hover thead tr:hover th, .table-hover tbody tr:hover td {
background-color: #FF0000;
}
</script>
</head>
<body>
<div class="container">
<h2>Table</h2>
<p>The .table-hover class enables a hover state on table rows within a tbody:</p>
<table class="table table-hover">
<thead>
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>Email</th>
</tr>
</thead>
<tbody>
<tr>
<td>John</td>
<td>Doe</td>
<td>john@example.com</td>
</tr>
<tr>
<td>Mary</td>
<td>Moe</td>
<td>mary@example.com</td>
</tr>
<tr>
<td>July</td>
<td>Dooley</td>
<td>july@example.com</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>
答案 0 :(得分:1)
`<style>
.table-hover thead tr:hover th, .table-hover tbody tr:hover td {
background-color: #FF0000;
}
</style>`
这段代码在表头上高亮,这个代码只在表体上高亮
`<style>
.table-hover tbody tr:hover td {
background-color: #FF0000;
}
</style>`
答案 1 :(得分:0)
你必须在CSS上放置样式而不是脚本
在这里做到:
<style>
.table-hover thead tr:hover th, .table-hover tbody tr:hover td {
background-color: #FF0000;
}
</style>