DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> CSS入門知識 >> 關於CSS >> CSS控制div寬度最大寬度/高度和最小寬度/高度的方法
CSS控制div寬度最大寬度/高度和最小寬度/高度的方法
編輯:關於CSS     

在網頁制作中經常要控制div寬度最大寬度/高度或者最小寬度/高度,但是在IE6中很多朋友都會遇到不兼容的頭疼問題,包括我也經常遇到這樣的問題,在百度查了很多都沒法解決,後來在一個論壇上學習到,在這裡跟大家分享下css3樣式代碼,經過時間完全兼容各大主流浏覽器。

CSS Code復制內容到剪貼板
  1. * 最小寬度 */   
  2. .min_width{min-width:300px;   
  3.    /* sets max-width for IE */  
  4.    _width:expression(document.body.clientWidth < 300 ? "300px" : "auto");   
  5. }   
  6.   
  7. /* 最大寬度 */  
  8. .max_width{   
  9.    max-width:600px;   
  10.    /* sets max-width for IE */  
  11.    _width:expression(document.body.clientWidth > 600 ? "600px" : "auto");   
  12. }   
  13.   
  14. /* 最小高度 */  
  15. .min_height{   
  16.    min-height:200px;   
  17.    /* sets min-height for IE */  
  18.    _height:expression(this.scrollHeight < 200 ? "200px" : "auto");   
  19. }   
  20.   
  21. /* 最大高度 */  
  22. .max_height{   
  23.    max-height:400px;   
  24.    /* sets max-height for IE */  
  25.    _height:expression(this.scrollHeight > 400 ? "400px" : "auto");   
  26. }   
  27.   
  28. /* 最大最小寬度 */  
  29. .min_and_max_width{   
  30.    min-width:300px;   
  31.    max-width:600px;   
  32.    /* sets min-width & max-width for IE */  
  33.    _width: expression(   
  34.       document.body.clientWidth < 300 ? "300px" :   
  35.         ( document.body.clientWidth > 600 ? "600px" : "auto")   
  36.    );   
  37. }   
  38.   
  39. /* 最大最小高度 */  
  40. .min_and_max_height{   
  41.    min-height:200px;   
  42.    max-height:400px;   
  43.    /* sets min-height & max-height for IE */  
  44.    _height: expression(   
  45.       this.scrollHeight < 200 ? "200px" :   
  46.         ( this.scrollHeight > 400 ? "400px" : "auto")   
  47.    );   
  48. }  

以上就是小編為大家帶來的CSS控制div寬度最大寬度/高度和最小寬度/高度的方法全部內容了,希望大家多多支持~

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved