每次将鼠标悬停在鼠标上时,我都会尝试使用glyphicon图标。我正在使用<span>
标签。但这拒绝运作。我做错了什么?
application.scss
/*
*= require bootstrap3-editable/bootstrap-editable
*= require bootstrap-datepicker3
*= require_tree .
*/
@import "bootstrap-sprockets";
@import "bootstrap";
.hovering:before {
display: none;
}
.hovering:hover:before {
display: block;
}
在我的视图文件中,它看起来像这样:
<span class='hovering'>
<%= link_to user_task_path(current_user, task.id), method: :delete,
data: { confirm: 'Are you sure?' }, remote: true do %>
<i class="glyphicon glyphicon-trash"></i>
<% end %>
</span>
答案 0 :(得分:2)
Glyphicon图标不是.hovering
元素上的伪元素,它是其中包含的i
元素的伪元素。因此,我们还需要定位i
元素:
.hovering i::before {
display: none;
}
.hovering:hover i::before {
display: block;
}