隐藏默认的css按钮

时间:2013-04-04 11:27:13

标签: css html5 button

我正在使用:

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

我试图隐藏默认的css按钮,并制作好的按钮,但我无法弄清楚如何。

有人可以帮忙吗?

1 个答案:

答案 0 :(得分: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/

的工作演示