0

我在用:

<div class="upload-area"> 
   <input type="file" name="attachemnt" class="buttonclass" /> 
</div> 

我正在尝试隐藏默认的 css 按钮,并制作一个不错的按钮,但我不知道如何。

有人可以帮忙吗?

4

1 回答 1

2

没有标准的方法。你只能用黑客来做。这个方法对你有好处

.fileInput {
    cursor: pointer;
    height: 25px;
    overflow: hidden;
    position: relative;
    width: 100px;
}

.fileInput em {
    background: linear-gradient(to bottom, #D65A75 0%, #CD4874 100%) repeat scroll 0 0 transparent;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-family: 'Arial';
    font-size: 15px;
    font-style: normal;
    margin-top: 5px;
    padding: 4px 7px;
    text-decoration: none;
    text-shadow: 1px 1px 0 #B8283D;
}

.fileInput input {
    bottom: 0;
    cursor: pointer;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
}

HTML 标记:

<span class="fileInput">
    <input id="file" type="file" name="file">
    <em>Browse computer</em>
</span>

在http://jsfiddle.net/GHbNa/工作演示

于 2013-04-04T13:50:48.047 回答