gpt4 book ai didi

css - 如何正确居中 Bootstrap 输入字段?

转载 作者:行者123 更新时间:2023-11-28 02:11:40 26 4
gpt4 key购买 nike

我正在尝试将 bootstrap google 样式的输入字段居中。但是,我不确定如何在不破解或破坏风格的情况下正确地完成它。

我试过在输入周围添加一个#center div,在左右添加自动边距,但没有成功。

我可以使用 margin-right hacks,但它们会破坏样式并且不是合适的解决方案。

HTML:

<body>
<dic id="center">
<div class="styled-input">
<input type="text" required />
<label>Email</label>
<span></span>
</div>
</div>
</body>

CSS:

#center{
margin-left: auto;
margin-right: auto;
}

* {
box-sizing: border-box;
}

.page-wrap {
max-width: 75rem;
margin: 0 auto;
}

input:focus ~ label, textarea:focus ~ label, input:valid ~ label, textarea:valid ~ label {
font-size: 0.75em;
color: #8e44ad;
top: -0.9rem;
transition: all 0.125s cubic-bezier(0.2, 0, 0.03, 1);
}

.styled-input {
float: left;
width: 33.3333%;
margin: 2rem 0 1rem;
position: relative;
}
.styled-input label {
color: #999;
padding: 1rem;
position: absolute;
top: 0;
left: 0;
transition: all 0.25s cubic-bezier(0.2, 0, 0.03, 1);
pointer-events: none;
}
.styled-input.wide {
width: 100%;
}

input, textarea {
padding: 1rem 1rem;
border: 0;
width: 100%;
font-size: 1rem;
}
input ~ span, textarea ~ span {
display: block;
width: 0;
height: 3px;
background: #8e44ad;
position: absolute;
bottom: 0;
left: 0;
transition: all 0.125s cubic-bezier(0.2, 0, 0.03, 1);
}
input:focus, textarea:focus {
outline: 0;
}
input:focus ~ span, textarea:focus ~ span {
width: 100%;
transition: all 0.125s cubic-bezier(0.2, 0, 0.03, 1);
}

textarea {
width: 100%;
min-height: 15em;
}

body{
background-color: gainsboro;
}

现场演示:https://jsfiddle.net/ce39fp2h/

如您所见,输入卡在左侧。我怎样才能正确居中?

最佳答案

您可以使用以下规则代替当前规则:

.styled-input {
width: 33.3333%;
margin: 2rem auto;
position: relative;
}

demo: https://jsfiddle.net/ce39fp2h/4/

关于css - 如何正确居中 Bootstrap 输入字段?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48714695/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com