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>

 

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

上一篇:asp.net core 构造函数依赖注入


下一篇:idea上传项目到gitee被拒绝的问题解决