我正在建立一个注册表格,我遇到的问题是input[type="text"] placeholder
和我的&#34;伪&#34; <select>
元素的占位符。我希望输入[type =&#34; text&#34;]占位符与&#34;伪&#34;保持对齐。占位符<select>
。
我使用了&#34;伪&#34;选择HTML元素的占位符,因为没有占位符用于选择HTML元素,而显示的内容而不是占位符是select中的第一个选项。
您可以在屏幕截图中看到一个选择的HTML元素,其中第一个<option>
文本为&#34; Country&#34;。还有另一个选择元素,第一个选项文本是&#34;你怎么想要你的书?&#34;。
与输入[type =&#34; text&#34;]占位符文本相比,这两个select元素都有缩进,我不能完全对齐输入[type =&#34; text&#34 ;]占位符文本。
input[type="text"].couture-input-underline,
input[type="password"].couture-input-underline,
input[type="number"].couture-input-underline,
select.couture-input-underline
{
width: 300px;
display: block;
font-size: 22px;
border: 0px solid #7f7f7f;
border-bottom-width: 1px;
background: transparent;
outline: none;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-o-border-radius: 0;
-ms-border-radius: 0;
border-radius: 0;
padding: 0;
margin:0;
margin-bottom: 10px;
}
.text-match-placeholder{
color: #ACACAC;
}
select option
{
outline: none;
-webkit-appearance: none;
padding: 0;
margin: 0;
}
&#13;
<select class="couture-input-underline text-match-placeholder">
<option value>Choose</option>
<option>First</option>
<option>Second</option>
</select>
<input type="text" class="couture-input-underline" placeholder="Text Box One" />
&#13;
答案 0 :(得分:1)
我试图重新创建它并且我已经找到了&#34; bug&#34;仅适用于Firefox。 如果是这种情况那么,这里发生的是声明
select > option {
-moz-padding-start: 3px;
}
在用户代理样式中找到。 See here how to inspect that
尽管如此,如果您为select > option
覆盖它,在您的CSS中,它无法正常工作。
/** IF you add the following
in your CSS, it won't solve
the problem
**/
select > option {
-moz-padding-start: 0 !important;
}
我的猜测是实际显示填充的元素是&#34; ghost&#34;与<option>
元素重复的元素,因此它不是您的css的目标。
这是一个非常难看的修复
input[type="text"].couture-input-underline,
input[type="password"].couture-input-underline,
input[type="number"].couture-input-underline,
select.couture-input-underline
{
padding-left: 3px;
}
select.couture-input-underline {
-moz-padding-start: 0px;
}
这基本上会向每个输入添加3px
,在FF上,这会使选项缩进6px
,因此我们仅为select
元素重置它。