min-height屬性允許你指定元素的最小高度,適用於需要平衡布局的情況。我將它用於Job面板上,以確保內容區域高於側邊欄。
- .with_minheight{
- min-height:550px;
- }
IE6的Min-heighthack
注:神奇的IE6原生不支持min-height屬性,不過幸好有一個min-heighthack。
- .with_minheight{
- min-height:550px;
- height:auto!important;
- height:550px;
- }
3、White-space(演示)
white-space屬性指定了元素中空白的處理方式。比如,指定white-space:nowrap會阻止文本自動換行。
- em{
- white-space:nowrap;
- }