每次我将鼠标悬停在字形图标上时,我都试图使其出现。我用了<span>标签。但这不起作用。我做错了什么?
应用程序.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>

最佳答案

Glyphicon图标不是.hovering元素上的伪元素,而是包含在中的i元素上的伪元素。因此,我们还需要针对i元素:

.hovering i::before {
    display: none;
}

.hovering:hover i::before {
    display: block;
}

08-28 08:30