html-css 等常用

来源:互联网 发布:在淘宝怎么搜索精仿鞋 编辑:程序博客网 时间:2024/05/21 13:59


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);
                 }


原创粉丝点击