2012-05-11 84 views
0

我希望我的formulaire的file元素有具有這個CSS文本框相同的CSS:爲HTML文件元素設置的可能的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?

+1

瀏覽器對文件輸入執行嚴格的限制,跨瀏覽器的行爲不一致。看到這個答案我剛剛寫了幾個替代品可能會有所幫助:http://stackoverflow.com/questions/10546074/cross-browser-issue-need-advice/10546154#10546154 –

回答

相關問題