Answers for "change file input button style"

1

change choose file button text

<button style="display:block;width:120px; height:30px;" onclick="document.getElementById('getFile').click()">Your text here</button>


<input type='file' id="getFile" style="display:none">
Posted by: Guest on December-11-2020
0

target button of fileinput css

.upload-btn {

    display: block;
    text-align: center;
    margin: 20px auto 20px;
    width: 50%;
    height: 30px;
    background-color: #fcff7f;
    line-height: 30px;

    }

.upload-btn:hover {
    background-color: #c39d5a;
    color: white;
    cursor: pointer;
    }
Posted by: Guest on December-02-2020

Code answers related to "change file input button style"

Browse Popular Code Answers by Language