gpt4 book ai didi

css - 使用 IE8 样式化文件输入按钮

转载 作者:太空宇宙 更新时间:2023-11-03 18:25:25 25 4
gpt4 key购买 nike

我在这里基本上使用这种方法:https://coderwall.com/p/uer3ow为我的文件输入部分设置样式,但它似乎在 IE8 中不起作用;我只看到一个巨大按钮的一 Angular 。

HTML:

<div class="upload_btn">
<span>Choose File</span>
<input type="file" name="item_file_upload_1" id="item_file_upload_1">
</div>

CSS:

.forms .upload_btn {
position: relative;
display: inline-block;
text-align: center;
width: 97px;
height: 27px;
font-weight: 300;
font-size: 16px;
line-height: 27px;
color: #393d59;
border: 2px solid #b9c0d6;
overflow: hidden;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
}

.forms .upload_btn > input[type="file"] {
position: absolute;
cursor: pointer;
top: 0;
right: 0;
font-size: 200px;
opacity: 0;
}

最佳答案

好的,修改这个答案:https://stackoverflow.com/a/1948200/472501

我能够为 IE8 应用以下 CSS 来解决问题:

.forms .upload_btn > input[type="file"] {
filter: alpha(opacity=0);
}

关于css - 使用 IE8 样式化文件输入按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20925941/

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