gpt4 book ai didi

html - Ruby on Rails 中 Bootstrap 3 按钮的自定义样式

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

我在为我的 Ruby on Rails 4 应用程序中的 bootstrap 3 按钮创建自定义样式时遇到问题。我有以下链接:

= link_to t('car_configurations.index.add'), { action: :new }, class: "btn btn-lg btn-default"

我的 css.scss 文件有以下样式:

.btn-default {
background: #ec6523;
color: #fff;
border: 0px;
}

.btn-default:hover {
background: #333;
color: #eee;
border: 0px;
outline: none;
}

.btn-default:active {
outline: none;
background: #333;
}

.btn-default:focus {
background: #ec6523;
color: #fff;
outline: none;
}

问题是这个样式不适用于这个按钮。怎么了?

最佳答案

尝试在 Bootstrap 后加载 CSS

<head>
<link href="bootstrap.css" rel="stylesheet">

然后

<link href="YOUR.css" rel="stylesheet">
</head>

关于html - Ruby on Rails 中 Bootstrap 3 按钮的自定义样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22783176/

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