Thursday 12 May 2016

ASP.NET - Input type file - set width by ID in CSS


Watch this example on YouTube
    <div>
        <input type="file" id="ImportFile" />
    </div>


CSS
#ImportFile{
    width: 50em;
}

No comments:

Post a Comment