我想在我的下拉列表左側沒有成功添加空間。
這裏是我的嘗試:
.editor-field input[type=select]
{
margin-left: 250px;
}
任何想法?
我想在我的下拉列表左側沒有成功添加空間。
這裏是我的嘗試:
.editor-field input[type=select]
{
margin-left: 250px;
}
任何想法?
沒有input[type=select]
。你大概意思select
,如
.editor-field select
{
margin-left: 250px;
}
非常感謝。 – Bronzato 2012-01-12 16:37:17
你的「下拉列表中選擇」肯定是一個<select>
元素,而不是一個<input type="select" />
,它不存在。
嘗試使用.editor-field select
代替。
A <select>
框不是<input type="select" />
。這是一個<select>
;
.editor-field select {
margin-left: 250px;
}
應該工作。
恭喜擊中20K代表:) – BoltClock 2012-01-12 16:18:52
@BoltClock:謝謝:) – Ryan 2012-01-12 16:24:04
@Ryan恭喜擊中127k代表:) – Dodekeract 2016-11-26 14:10:43
您確定選擇器正確嗎? – psynnott 2012-01-12 16:15:57
那麼,去看看你的HTML,並告訴我,如果你看到這種類型的''。 – BoltClock 2012-01-12 16:15:58