gpt4 book ai didi

html - 用图像图标替换文件字段 - HTML/CSS

转载 作者:太空宇宙 更新时间:2023-11-04 14:03:55 32 4
gpt4 key购买 nike

我想用图像图标替换我的文件字段。因为文件字段看起来不酷。

看看这个相机图标。当有人点击这个图标时,浏览窗口打开: enter image description here

这是 JsFiddle 演示: http://jsfiddle.net/8aJb4/2/

这是我的代码:

HTML:

<div class="container">
<input type="file" name="image_src" id="image_src" >
</div>

CSS:

.container{
width:500px;
border:black solid 1px;
text-align:center;
padding:4px;

}

这是图像图标的链接: http://postimg.org/image/rg17ffpxh/

最佳答案

这是一个 Fiddle

<div class="container">
<span class="select-wrapper">
<input type="file" name="image_src" id="image_src" />
</span>
</div>


.container{
width: 500px;
border: 1px solid #333;
padding: 4px;
}
.select-wrapper {
background: url(http://s10.postimg.org/4rc0fv8jt/camera.png) no-repeat;
background-size: cover;
display: block;
position: relative;
width: 33px;
height: 26px;
}
#image_src {
width: 26px;
height: 26px;
margin-right: 100px;
opacity: 0;
filter: alpha(opacity=0); /* IE 5-7 */
}

关于html - 用图像图标替换文件字段 - HTML/CSS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18855302/

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