首页 > Web开发 > 详细

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

时间:2021-05-25 15:50:59      阅读:12      评论:0      收藏:0      [点我收藏+]
<!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']光标效果

原文:https://www.cnblogs.com/linding/p/14808262.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!