我试图使一个登录表单与两个输入字段的插入填充,但他们最终超出了父的界限。是什么导致的?

jsfiddle.net/4x2kb/

#mainContainer { line-height: 20px; font-family: "Helvetica Neue",Helvetica,Arial,sans-serif; background-color: rgba(0,50,94,0.2); margin: 20px auto; display: table; -moz-border-radius: 15px; border-style: solid; border-color: rgb(40, 40, 40); border-radius: 2px 5px 2px 5px / 5px 2px 5px 2px; border-radius: 2px; border-radius: 2px 5px / 5px; box-shadow: 0 5px 10px 5px rgba(0,0,0,0.2); } .loginForm { width: 320px; height: 250px; padding: 10px 15px 25px 15px; overflow: hidden; } .login-fields > .login-bottom input#login-button_normal { float: right; padding: 2px 25px; cursor: pointer; margin-left: 10px; } .login-fields > .login-bottom input#login-remember { float: left; margin-right: 3px; } .spacer { padding-bottom: 10px; } /* ELEMENT OF INTEREST HERE! */ input[type=text], input[type=password] { width: 100%; height: 20px; padding: 5px 10px; background-color: rgb(215, 215, 215); line-height: 20px; font-size: 12px; color: rgb(136, 136, 136); border-radius: 2px 2px 2px 2px; border: 1px solid rgb(114, 114, 114); box-shadow: 0 1px 0 rgba(24, 24, 24,0.1); } input[type=text]:hover, input[type=password]:hover, label:hover ~ input[type=text], label:hover ~ input[type=password] { background:rgb(242, 242, 242) !important; } input[type=submit]:hover { box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), inset 0 -10px 10px rgba(255,255,255,0.1); } <div id="mainContainer"> <div id="login" class="loginForm"> <div class="login-top"> </div> <form class="login-fields" onsubmit="alert('test'); return false;"> <div id="login-email" class="login-field"> <label for="email" style="-moz-user-select: none;-webkit-user-select: none;" onselectstart="return false;">E-mail address</label> <span><input name="email" id="email" type="text"></input></span> </div> <div class="spacer"></div> <div id="login-password" class="login-field"> <label for="password" style="-moz-user-select: none;-webkit-user-select: none;" onselectstart="return false;">Password</label> <span><input name="password" id="password" type="password"></input></span> </div> <div class="login-bottom"> <input type="checkbox" name="remember" id="login-remember"></input> <label for="login-remember" style="-moz-user-select: none;-webkit-user-select: none;" onselectstart="return false;">Remember my email</label> <input type="submit" name="login-button" id="login-button_normal" style="cursor: pointer" value="Log in"></input> </div> </form> </div> </div>


当前回答

是否希望输入字段居中? 将元素居中的技巧:指定元素的宽度并将边缘设置为auto,例如:

margin : 0px auto;
width:300px

一个链接到您更新的小提琴:

http://jsfiddle.net/4x2KP/5/

其他回答

你也有一个错误在你的css与感叹号在这一行:

background:rgb(242, 242, 242);!important;

去掉前面的分号。但是,important应该很少使用,并且在很大程度上可以避免使用。

这很棘手,而且是根据情况而定的。这些评论中有一些困惑,让我们总结一下解决方案:

showdev在已接受的答案中解释了第一种有效方法。但是,这并不是最终结果。

事实上:如果你在输入中添加一些填充,它就可以工作了。如果你添加一些边距,它仍然是溢出。似乎box-sizing被忽略了。此外,摆弄min-width和max-width也是无用的。

要应用边距,Al Zziwa解释了唯一可行的解决方案,即使用calc()来减少边距的宽度。例如,添加左、右边距: 输入{ 边距:0 20px; 宽度:calc(100% - 40px); }

如果您不喜欢这个解决方案,那么解决方法是避免在输入中使用空白,而是使用应用填充或空白的包装器。

填充本质上是添加到宽度上的,因此当你说width:100%和Padding: 5px 10px时,你实际上是在100%宽度上添加了20px。

尝试将box-sizing更改为border-box。填充是增加输入元素的宽度。

参见这里的演示

CSS

input[type=text],
input[type=password] {
    width: 100%;
    margin-top: 5px;
    height: 25px;
    ...
}

input {
    box-sizing: border-box;
}

+ box-sizing

试着编码一下

*, ::after, ::before {
  box-sizing: border-box;
}