2011-03-10 67 views
0

即時通訊使用LESS試圖簡化我的CSS創建。到目前爲止好,但我來到翻過一個問題,我的代碼看起來像這樣:LESS CSS繼承幫助

#content { 

    h1 { 
     font-size:20px; 
    } 

    h2 { 
     font-size:10px; 
    } 
} 

現在我也想申請font-weight:normal;到兩個h1和h2,我如何做到這一點,而不將每一個規則有它?

回答

0

嘗試像這樣

#content { 

    h1 { 
     font-size:20px; 
    } 

    h2 { 
     font-size:10px; 
    } 
    h1, h2 
    { 
     font-weight:normal; 
    } 
} 
0
#content { 
    font-weight:normal; 
    h1 { 
    font-size:20px; 
    } 

    h2 { 
    font-size:10px; 
    } 
} 

有時,它幫助。實際上並非在所有情況下。