IE6-9版本浏览器css hack的if 语句操作有必要重申一下_html/css_WEB-ITnose

WBOY
풀어 주다: 2016-06-24 11:21:12
원래의
922명이 탐색했습니다.

1、css if hack条件语法
only ie
仅所有的win系统自带ie可识别
only ie 5.0
只有ie5.0可以识别
only ie 5.0+
ie5.0包换ie5.5都可以识别
only ie 6-
仅ie6可识别
only ie 6/+
ie6以及ie6以下的ie5.x都可识别


仅ie7可识别
only ie 7/+
ie7以及ie7以下的ie6、ie5.x都可识别


仅ie8可识别


仅ie9可识别

注:在 if  后加 lt gte有不同效果 (参加其它参数同理)

  • = ie8 仅ie8可识别
  • = ie7或更低版本
  • = 高于或者等于ie8版本

     

    2、div+css实例
    css实例一:
    让ie6-ie8显示不同的内容,div css代码如下:

    <!doctype html><html><head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><title>div if条件实例</title></head><body>你正在使用:<!--[if ie 7]> <h2>ie7</h2><![endif]--><!--[if ie 6]> <h2>ie6</h2><![endif]--><!--[if ie 8]> <h2>ie8</h2><![endif]--><!--[if ie 9]> <h2>ie9</h2><![endif]--><br><br><strong>说明</strong>:如果你的浏览器版本为多少即会显示ie多少,针对ie6-ie9实验</body></html>
    로그인 후 복사

    div+css实例二:说明:以上针对不同ie显示不同网页内容div+css实例实验。

    让ie6-ie8显示不同css样式效果,div css代码如下:

    <!doctype html><html><head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><title>css if条件hack实例</title><!--[if ie 6]> <style type="text/css">.divcss{ color:#f00;}</style><![endif]--><!--[if ie 7]> <style type="text/css">.divcss{ color:#ff0;}</style><![endif]--><!--[if ie 8]> <style type="text/css">.divcss{ color:#00f;}</style><![endif]--><!--[if ie 9]> <style type="text/css">.divcss{ color:#000;}</style><![endif]--></head><body><div class="divcss">div css实验提示:<br>我在ie6下是红颜色,在ie7下是黄颜色,在ie8下是蓝颜色,在ie9下是黑色</div></body></html>
    로그인 후 복사

    说明:以上实验仅实验ie6-ie9下if hack。

    원천:php.cn
    본 웹사이트의 성명
    본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
    인기 튜토리얼
    더>
    최신 다운로드
    더>
    웹 효과
    웹사이트 소스 코드
    웹사이트 자료
    프론트엔드 템플릿