Home  >  Article  >  Web Front-end  >  各种注释_html/css_WEB-ITnose

各种注释_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 11:41:57984browse

HTML

<!--  -->

 

 

 

CSS

/*   */

 

 

 

javascript

单行 //多行  /*   */

 

 

 

 

条件注释

  • 如果是IE6
  • <!--[if IE 6]><![endif]--> 

     

     

  • 如果不是IE
  • <![if !IE]><![endif]>

     

     

  • 如果小于IE 6
  • <!--[if lt IE 6]><![endif]-->

     



  • 如果小于或等于
  • <!--[if lte IE 6]><![endif]-->

     

     

  • 如果大于或等于
  • <!--[if gte IE 7]><![endif]-->

     

    Statement:
    The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn