Warm tip: This article is reproduced from stackoverflow.com, please click
bootstrap-4 css html

How to change the "Browse" button in Bootstrap custom file input?

发布于 2020-03-31 22:56:03

I need to translate it to another language, any way to do that?

EDIT: Nevermind, figured it out myself.

.custom-file-label::after {
content: "Custom label" !important; }
Questioner
Viktor Mec
Viewed
174
sumeshsn1 2020-01-31 19:30

override on css:

.custom-file-input:lang(en)~.custom-file-label::after {
    content: "Browse";
}

change content