如何使用css Only选择“选择文件”按钮的样式

时间:2016-04-11 04:54:33

标签: html css css3

友。

我想尝试设计一下:

<input type="file" multiple>

想要我想要:我想改变它的颜色,也改变它的大小......

提前感谢。

3 个答案:

答案 0 :(得分:5)

文件类型是本机元素,因此您无法改变它的外观。相反,你可以隐藏在某个元素的后面。

<div>
  Choose File
 <input type="file" class="hide_file">
</div>

 div{
  padding:5px 10px;
  background:#00ad2d;
  border:1px solid #00ad2d;
  position:relative;
  color:#fff;
  border-radius:2px;
  text-align:center;
  float:left;
  cursor:pointer
}
.hide_file {
    position: absolute;
    z-index: 1000;
    opacity: 0;
    cursor: pointer;
    right: 0;
    top: 0;
    height: 100%;
    font-size: 24px;
    width: 100%;
}

参考Here

答案 1 :(得分:1)

T = int(raw_input())

for t in xrange(T):
    s = raw_input()
    length = len(s)
    for i in xrange(length / 2):
        if s[i] != s[length - i - 1]:
            if s[i + 1:length - i] == s[length - i - 1:i:-1]:
                print i
            else:
                print length - i - 1
            break
    else:
        print -1

答案 2 :(得分:1)

您可以简单地在 css 中使用 ::-webkit-file-upload-button 并设置“选择文件”按钮的样式。