0
.airport-selections {
margin-top: 10px;
.airport-input {
width: 200px;
}
}
HTML:
<div class="airport-selections">
<label class="airport-label" for="airport-from">
Departure:
</label>
<input type="text" class="airport-input">
</div>
如果我不嵌套它們時,輸入的寬度設置爲200。這也與所有的頁面上的樣式發生。
普通的CSS不支持這種嵌套的語法 - 只有CSS預處理器,比如LESS,SASS等。 – CBroe