Even you have specified <input type="file" > using the style attribute it does not get applied in as expected in chrome browser. You can resolve that issue by setting file control width as follows.
input[type="file"]{
height:35px;
width:100%;
}
input[type="file"]::-webkit-file-upload-button{
height:35px;
}
cheers,
Samitha
input[type="file"]{
height:35px;
width:100%;
}
input[type="file"]::-webkit-file-upload-button{
height:35px;
}
cheers,
Samitha
No comments:
Post a Comment