簡單..我遇到了語法錯誤。 $('#container').css('min-height', '360');
沒有設置規則,但$('#container').css('height', '360');
呢。jQuery css min-height
幫助?
簡單..我遇到了語法錯誤。 $('#container').css('min-height', '360');
沒有設置規則,但$('#container').css('height', '360');
呢。jQuery css min-height
幫助?
首先嚐試:
$('#container').css('min-height', '360px');
否則儘量
$('#container').attr('style','min-height:360px;other-styles');
使用
$('#container').css('min-height', '360px');
該屬性實際上是最小高度 –
@Paolo - 謝謝,我打算回來並刪除之後 - 我必須包括它,因爲最低字符要求編輯 –
@Zachary歡迎:) –
了這個問題傳遞對象字面當尋找jQuery.css
。
使用jQuery 2我可以這樣做:
$(selector).css({minHeight:"20px"});
現在我可以一次傳遞了一堆東西:
$(selector).css({
minHeight:"20px",
minWidth:"20px",
backgroundColor:"yellow",
});
一個類似的最小高度的問題:http://stackoverflow.com/問題/ 2750892/jquery-set-min-height-of-div –