其他分享
首页 > 其他分享> > css-input[type='file']光标效果

css-input[type='file']光标效果

作者:互联网

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <title>自定义input[type='file']样式</title>
</head>
<body>
<input type="file"/>
<style type="text/css">
    input{
        width: 20px;
        height: 20px;
        cursor: pointer;
    }
    input:before{
        content: "";
        display: inherit;
        width: inherit;
        height: inherit;
    }
</style>
</body>
</html>

 

标签:inherit,height,width,file,input,20px,css
来源: https://www.cnblogs.com/linding/p/14808262.html