2016-09-17 13 views
6

を持つカスタム入力ファイルへ:どのように私はWebPACKのブートストラップでは、このように4 envを実行したいブートストラップ4

http://v4-alpha.getbootstrap.com/components/forms/#custom-forms

ファイルブラウザを「プレースホルダを無効にする方法

<label class="custom-file"> 
    <input type="file" id="file" class="custom-file-input"> 
    <span class="custom-file-control"></span> 
</label> 

"および"ボタンラベル "

答えて

6

これらの値はCSSのものです:

.custom-file-control:lang(en)::after { 
    content: "Choose file..."; 
} 

.custom-file-control:lang(en)::before { 
    content: "Browse"; 
} 
関連する問題