html-css 等常用


1.target属性值的含义:
      _blank:新建窗口
      _self:相同窗口
      _parent:父窗口
      _top:首窗口

2.用css设置图片设置最大高度和宽度

    方法一 .resize img { width: expression(this.width > 680 ? 680 : true); max-width: 680px; height: expression(this.height > 500 ? 500 : true); max-height:680px;}

    方法二
               .resize img {max-width: 680px;max-height: 680px;} /* for Firefox & IE7 */
               * html .resize img { /* for IE6 */
                        width: expression(this.width > 680 && this.width > this.height ? 680 : true);
                        height: expression(this.height > 500 ? 500 : true);
                 }


猜你喜欢

转载自blog.csdn.net/ming1215919/article/details/74853166