input,button默认有border问题-谷歌

本文介绍了一个关于前端布局的问题——两个浮动的input元素之间存在额外的间距。通过检查盒子模型发现,原来是默认的2px边框导致了这一现象。解决办法很简单,只需要将边框设为0即可。

刚开始接触前端,这个问题也是第一次碰到。
设置的两个input,浮动后到不了一块,见图:

查了一下盒子,发现有默认2px的border;

问题很简单,只要把border设为0就可以解决
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> <!-- <link rel="stylesheet" href="text.css" /> --> </head> <style> .all { width: 800px; box-shadow: -10px 10px 25px rgba(210, 210, 210, 0.9); margin: auto; margin-top: 5%; display: flex; border-radius: 35px; background-color: #ffffff; height: 550px; } .log { width: 50%; margin: auto; } .reg { width: 50%; height: 100%; margin: auto; background-color: #20b2aa; border-radius: 35px; color: #ffffff; } .reg_1 { text-align: center; margin: auto; margin-top: 50%; } .reg_1 h2 { font-weight: 700; } .reg_1 p { margin: 15px 0px 25px 0px; } .sig { width: 70px; height: 30px; border-radius: 12px; background-color: #20b2aa; border-color: #fff; color: #ffffff; } #tiao { padding: 0em 0; } .reg_1 a { color: #ffffff; } h3 { font-size: 3em; color: black; padding-bottom: 1em; margin: 0; text-align: center; font-family: "Marvel-Regular"; } .input { margin: 10px 50px; width: 300px; height: 70px; } span { color: #999; font-size: 0.85em; padding-bottom: 0.2em; display: block; text-transform: uppercase; margin-bottom: 4px; } .ll { border: 1px solid #555; outline-color: #fd9f3e; width: 90%; font-size: 1em; padding: 0.5em; line-height: inherit; } .register-top-grid { color: black; padding-bottom: 1em; margin: 0; /* text-align: center; */ font-family: "Marvel-Regular"; margin: 10px 0; } .text-center { text-align: center; } .zhuce { border: none; font-size: 10px; color: rgb(255, 253, 253); width: 80px; height: 35px; background-color: rgb(241, 52, 10); } </style> <body> <div class="all"> <div class="reg"> <div class="reg_1"> <h2>已有账号?</h2> <p>请使用你的账号进行登录!</p> <a href="/login.html"> <button type="button" class="sig">登录</button> </a> </div> </div> <div class="log"> <div> <div class="register" id="tiao"> <form> <div class="register-top-grid"> <h3>注册新用户</h3> <div class="input"> <input class="ll" type="text" placeholder="请输入用户名" v-model="name" /> </div> <div class="input"> <input class="ll" type="password" placeholder="请输入密码" v-model="password" /> </div> <div class="clearfix"></div> </div> <div class="text-center"> <input type="submit" value="注册" class="zhuce" /> </div> </form> </div> </div> </div> </div> </body> </html><!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> <!-- <link rel="stylesheet" href="text.css" /> --> </head> <style> .all { width: 800px; box-shadow: -10px 10px 25px rgba(210, 210, 210, 0.9); margin: auto; margin-top: 5%; display: flex; border-radius: 35px; background-color: #ffffff; height: 550px; } .log { width: 50%; margin: auto; } .reg { width: 50%; height: 100%; margin: auto; background-color: #20b2aa; border-radius: 35px; color: #ffffff; } .reg_1 { text-align: center; margin: auto; margin-top: 50%; } .reg_1 h2 { font-weight: 700; } .reg_1 p { margin: 15px 0px 25px 0px; } .sig { width: 70px; height: 30px; border-radius: 12px; background-color: #20b2aa; border-color: #fff; color: #ffffff; } #tiao { padding: 0em 0; } .reg_1 a { color: #ffffff; } h3 { font-size: 3em; color: black; padding-bottom: 1em; margin: 0; text-align: center; font-family: "Marvel-Regular"; } .input { margin: 10px 50px; width: 300px; height: 70px; } span { color: #999; font-size: 0.85em; padding-bottom: 0.2em; display: block; text-transform: uppercase; margin-bottom: 4px; } .input-text { border: 1px solid #555; outline-color: #fd9f3e; width: 90%; font-size: 1em; padding: 0.5em; line-height: inherit; } .register-top-grid { color: black; padding-bottom: 1em; margin: 0; font-family: "Marvel-Regular"; margin: 10px 0; } .text-center { text-align: center; } .tijiao { color: rgb(255, 253, 253); width: 80px; height: 35px; background-color: rgb(241, 52, 10); border: none; } </style> <body> <div class="all"> <div class="log"> <div class="register"> <form> <div class="register-top-grid"> <h3>用户登录</h3> <div class="input"> <span>用户名 <label style="color: red">* </label></span> <input type="text" v-model="name" placeholder="请输入用户名" class="input-text" /> </div> <div class="input"> <span>密码 <label style="color: red">*</label></span> <input type="password" v-model="password" placeholder="请输入密码" class="input-text" /> </div> </div> <div class="text-center"> <input type="submit" value="提交" class="tijiao" @click="denglu" /> </div> </form> </div> </div> <div class="reg"> <div class="reg_1"> <h2>没有账号?</h2> <p>立即注册加入我们吧,和我们一起开启旅程吧</p> <a href="/register.html"> <button type="primary" class="sig">注册</button> </a> </div> </div> </div> </body> </html>怎么才能将两个连接起来
最新发布
09-03
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值