如何學好java

          如何學好java,其實很簡單,只要用心體會,慢慢積累!
          posts - 106, comments - 7, trackbacks - 0, articles - 3
            BlogJava :: 首頁 :: 新隨筆 :: 聯系 :: 聚合  :: 管理
          CSS方法解決IE6最小高度,IE6最小寬度,IE6最大高度,IE6最大寬度,
          兼容IE6/' target='_blank'>兼容IE6/IE7/IE8/火狐
          ====================
          IE6最小高度
          .min_height{
            min-height:200px;
            _height:expression(this.scrollHeight < 200 ? "200px" : "auto");
          }
          --------------------------------
          IE6最大高度
          .max_height{
            max-height:400px;
            _height:expression(this.scrollHeight > 400 ? "400px" : "auto");
          }
          --------------------------------
          IE6最小寬度
          max-width: 600px;
           _width:expression(document.body.clientWidth > 600 ? "600px" : "auto");
           /*_width:expression(document.body.clientWidth < 300 ? "300px" : "auto"); 這是min-width */
          --------------------------------
          IE6最大最小寬度
          .min_and_max_width{
            min-width:300px;
            max-width:600px;
            _width: expression(
              document.body.clientWidth < 300 ? "300px" :
                 ( document.body.clientWidth > 600 ? "600px" : "auto")
            );
          }
          --------------------------------
          IE6最大最小高度
          .min_and_max_height{
            min-height:200px;
            max-height:400px;
            _height: expression(
              this.scrollHeight < 200 ? "200px" :
                ( this.scrollHeight > 400 ? "400px" : "auto")
            );
          }
          主站蜘蛛池模板: 铜梁县| 蓝田县| 通渭县| 灵川县| 关岭| 乐都县| 淄博市| 黑龙江省| 静乐县| 丹棱县| 龙泉市| 宁强县| 宜章县| 合作市| 西吉县| 灵石县| 满城县| 岫岩| 宁河县| 库尔勒市| 玉门市| 航空| 尼勒克县| 昌宁县| 株洲县| 寿光市| 洮南市| 嘉义市| 九龙坡区| 招远市| 博客| 濮阳市| 邮箱| 岑巩县| 河间市| 高青县| 綦江县| 靖边县| 和田县| 娱乐| 灵石县|