开发者社区 问答 正文

input 标签为什么会多出1像素?

screenshot

 * {        
            margin: 0px;
            padding: 0px;
        }
         .box {
             width: 200px;
             border: black 1px solid;
         }
         input {
             width: 198px;
             height: 18px;
             border: solid 1px red;
         }



<div class="box">
        <input type="text"/>
</div>

展开
收起
杨冬芳 2016-06-13 14:45:02 2446 分享 版权
1 条回答
写回答
取消 提交回答
  • IT从业

    input默认是是 inline-block 并默认与基线对齐,也就是baseline,加上 vertical-align: top;就行 或者 改成 display: block;

    2019-07-17 19:35:59
    赞同 展开评论
问答地址: