我正在嘗試處理特定行上的字段之間的間距。似乎我已經找出了文本框與margin-right
屬性之間的空格。關於選擇框和文本框之間的間距的CSS問題
我想在選擇選項框和文本框之間放置相同數量的空格,但它似乎不起作用。對於選擇框,是否有不同於文本框的保證金屬性?
這裏是我的CSS類和選擇選項框我的HTML代碼:
.textsmall {
display: inline-block;
width: 10%;
padding-right: 5%;
margin-right: 25px;
}
.combosmall [
display: inline-block;
margin-right: 25px;
}
input id="CMDContractYear" type="number" class="textsmall" maxlength="4"
select size="1" name="CMDSchedStatus" class="combosmall"
input id="CMDCreationDate" type="text" class="textsmall" maxlength="10"
感謝
你有一個方括號'['而不是花括號{'''爲.combosmall'。如果您包含實際的HTML而不是您提供的_「僞HTML」,它也將有所幫助。 – hungerstar
呃應該看到這一點。謝謝 – hammerva
這是否解決了這個問題還是仍然存在問題? – hungerstar