CSS:悬停选择器无法正常工作

时间:2016-07-19 04:01:10

标签: css hover

:hover选择器用于选择元素,但不用于此,

我试试这个但不行,我该怎么办呢 感谢

<a href='{% if user.is_admin %}{% url 'url_to_admin' %}{% else %}{% url 'url_to_other' %}'>other url </a>
.btn btn:hover {
  background-color: red;
}

1 个答案:

答案 0 :(得分:3)

你的选择器错了:

.btn:hover { /* btn:hover is missing class selector the dot. */
  background-color: red;
}