gpt4 book ai didi

css - 将 file_field_tag 外观更改为按钮外观

转载 作者:技术小花猫 更新时间:2023-10-29 12:07:06 26 4
gpt4 key购买 nike

我正在做一个 Rails 元素,我想使用 file_field_tag,但我希望它看起来像一个按钮。

我有这个:

enter image description here

使用此代码:

= file_field_tag 'attachment'

我想要这样的东西:

enter image description here

我尝试了这个:

= file_field_tag 'attachment', class: 'btn btn-large btn-warning'

但我明白了:

enter image description here

如何更改 file_field_tag 的外观以使其看起来像一个按钮?

最佳答案

HTML:

<span class="btn btn-large btn-warning btn-file">
Choose File
<%= file_field_tag :attachment %>
</span>

CSS:

.btn-file {
position: relative;
overflow: hidden;
}

.btn-file input[type=file] {
position: absolute;
top: 0;
right: 0;
min-width: 100%;
min-height: 100%;
font-size: 100px;
text-align: right;
filter: alpha(opacity=0);
opacity: 0;
outline: none;
background: white;
cursor: inherit;
display: block;
}

关于css - 将 file_field_tag 外观更改为按钮外观,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31925833/

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