2011-09-09 76 views
15

簡單..我遇到了語法錯誤。 $('#container').css('min-height', '360');沒有設置規則,但$('#container').css('height', '360');呢。jQuery css min-height

幫助?

+0

一個類似的最小高度的問題:http://stackoverflow.com/問題/ 2750892/jquery-set-min-height-of-div –

回答

33

首先嚐試:

$('#container').css('min-height', '360px'); 

否則儘量

$('#container').attr('style','min-height:360px;other-styles'); 
2

使用

$('#container').css('min-height', '360px'); 
+0

該屬性實際上是最小高度 –

+0

@Paolo - 謝謝,我打算回來並刪除之後 - 我必須包括它,因爲最低字符要求編輯 –

+0

@Zachary歡迎:) –

2

了這個問題傳遞對象字面當尋找jQuery.css

使用jQuery 2我可以這樣做:

$(selector).css({minHeight:"20px"}); 

現在我可以一次傳遞了一堆東西:

$(selector).css({ 
    minHeight:"20px", 
    minWidth:"20px", 
    backgroundColor:"yellow", 
});