gpt4 book ai didi

html - 将 glyphicon 添加到 rails link_to helper 并在悬停时禁用效果

转载 作者:太空宇宙 更新时间:2023-11-04 02:35:31 25 4
gpt4 key购买 nike

我正在尝试设置我的 link_to 助手的样式。我想添加一个图标而不是链接并禁用所有效果。我按照这个方法Remove underline from link within hyperlinked div但它对我不起作用,每当我将鼠标悬停在图标上时它就会消失,这不是我想要的。这是我到目前为止所拥有的。

<div id = "owner-icons">
<%= link_to product, method: :delete, data: { confirm: 'Are you sure?' } do %>
<span class="glyphicon glyphicon-trash"></span>
</div>
<% end %>

bootstrap.css

div.owner-icons a {text-decoration:none;}

是否也可以更改图标的颜色?

最佳答案

您只需添加 glyphicon给你这样的链接:

查看(帮我改your_url)

<div id="owner-icons">
<%= link_to '', your_url, method: :delete, data: { confirm: 'Are you sure?' }, class: 'glyphicon glyphicon-trash' %>
</div>

风格

#owner-icons a {
color: red; # your custom color
text-decoration: none;
}

顺便说一句,您当前的代码存在一些问题:

  • owner-iconsid不是class , 所以你的 css 将不起作用
  • </div>我认为结束标记不在正确的位置

更新

为链接添加悬停样式:

  • 如果你使用的是 scss

    #owner-icons a {
    color: red; # your custom color
    text-decoration: none;
    &:hover {
    background: transparent; # Your custom background
    }
    }
  • 或者一个普通的 CSS

    #owner-icons a {
    color: red; # your custom color
    text-decoration: none;
    }
    #owner-icons a:hover {
    background: transparent; # Your custom background
    }

关于html - 将 glyphicon 添加到 rails link_to helper 并在悬停时禁用效果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35737530/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com