0

我希望file我的公式中的一个元素具有与具有此 css 的文本字段相同的 css :

.formulaire .inputlong {  // formulaire is the form and inputlong is the name of the css for textfields
    width: 250px;
    background-color:#FFF; 
    border:1px solid;
    border-color:#b80500;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #bbb;
    color: #000;
    background-position: 10px 6px;
    float: left;
}

我试图将文件的 css 设置为 inputlong css 但什么也没有!

那么如何为文件元素创建一个类似的css呢?

4

2 回答 2

1

出于安全原因,您无法使用file.

我知道的大多数解决方案都会更改“浏览”按钮的不透明度,以便用户看到后面的内容。

例如 :

http://www.shauninman.com/archive/2007/09/10/styling_file_inputs_with_css_and_the_dom

于 2012-05-11T06:11:24.387 回答
1

一个file元素,像一个selectcheckboxradiobutton元素是一个操作系统/浏览器控制的html元素。您可以使用 javascripts 设置样式,但(几乎)不能使用 css

于 2012-05-11T06:21:12.493 回答