我试图创建简单的入口页面,如bootstrap4 example。
我复制了上面示例中的整个css file(以及html源代码)。
现在我尝试将其与typeahead结合使用:我想用" Country Name"替换电子邮件输入字段。使用typeahead解释here。 我希望我的输入字段看起来像:
但是这种类型看起来像是:
这是我的Fiddle。
HTML
浮动标签< / h1> - >
<div class="form-label-group">
<input type="text" id="cName" class="form-control" placeholder="Country Name" required autofocus>
<label for="cName">Country Name</label>
</div>
<div class="options-menu form-label-group"></div>
<div class="form-label-group">
<select class="custom-select custom-select-lg" style="font-size: 100%;">
<option selected>Pick one</option>
<option value="1">Strategy 1</option>
<option value="2">Strategy 2</option>
<option value="3">Strategy 3</option>
<option value="3">Strategy 4</option>
</select>
</div>
<div class="checkbox mb-3">
<label>
<input type="checkbox" value="remember-me"> Remember me
</label>
</div>
<button class="btn btn-lg btn-primary btn-block" type="submit">Next</button>
<p class="mt-5 mb-3 text-muted text-center">© 2018 R&D</p>
</form>
CSS:
:root {
--input-padding-x: .75rem;
--input-padding-y: .75rem;
}
html,
body {
height: 100%;
}
body {
display: -ms-flexbox;
display: -webkit-box;
display: flex;
-ms-flex-align: center;
-ms-flex-pack: center;
-webkit-box-align: center;
align-items: center;
-webkit-box-pack: center;
justify-content: center;
padding-top: 40px;
padding-bottom: 40px;
background-color: #f5f5f5;
}
.form-signin {
width: 100%;
max-width: 420px;
padding: 15px;
margin: 0 auto;
}
.form-label-group {
position: relative;
margin-bottom: 1rem;
}
.form-label-group > input,
.form-label-group > label {
padding: var(--input-padding-y) var(--input-padding-x);
}
.form-label-group > label {
position: absolute;
top: 0;
left: 0;
display: block;
width: 100%;
margin-bottom: 0; /* Override default `<label>` margin */
line-height: 1.5;
color: #495057;
border: 1px solid transparent;
border-radius: .25rem;
transition: all .1s ease-in-out;
}
.form-label-group input::-webkit-input-placeholder {
color: transparent;
}
.form-label-group input:-ms-input-placeholder {
color: transparent;
}
.form-label-group input::-ms-input-placeholder {
color: transparent;
}
.form-label-group input::-moz-placeholder {
color: transparent;
}
.form-label-group input::placeholder {
color: transparent;
}
.form-label-group input:not(:placeholder-shown) {
padding-top: calc(var(--input-padding-y) + var(--input-padding-y) * (2 / 3));
padding-bottom: calc(var(--input-padding-y) / 3);
}
.form-label-group input:not(:placeholder-shown) ~ label {
padding-top: calc(var(--input-padding-y) / 3);
padding-bottom: calc(var(--input-padding-y) / 3);
font-size: 12px;
color: #777;
}
答案 0 :(得分:0)
快速查看你的小提琴似乎当你将打印头与Bootstrap集成时,它会导致字体大小/类型改变或输入字段高度改变(不是100%肯定)在任何一种情况下,如果你看着你的CSS的第一个条目是:
:root {
--input-padding-x: .75rem;
--input-padding-y: .75rem;
}
这将设置填充高度和填充宽度.75rem
,用于输入字段,您会看到它显示错误:
.form-label-group > input,
.form-label-group > label {
padding: var(--input-padding-y) var(--input-padding-x);
}
有很多方法可以解决这个问题,我不确定在你的情况下哪种方法最有效。可能需要将--input-padding-x
和--input-padding-y
调整为适合您的表单元素的大小,或者您可能需要更改.form-label-group > input
和{{1}的填充代替硬编码的类。希望有助于或至少让你直接指向正确的。