zoukankan      html  css  js  c++  java
  • 编写灵活、稳定、高质量的 HTML 和 CSS 代码的规范。

     
    引用地址
    http://codeguide.bootcss.com/#html-ie-compatibility-mode
    
    
    <!DOCTYPE html>
    <html lang="zh-CN">
      <head>
      	<meta charset="UTF-8">
      	<meta http-equiv="X-UA-Compatible" content="IE=Edge">
        <link href="public/ico/favicon.ico" rel="shortcut icon" type="image/x-icon">
    
        <title>Page title</title>
    
        <link rel="stylesheet" href="code-guide.css">
        <!--[if lt IE 8]>
        <link rel="stylesheet" href="fix6_7.css">
    	<![endif]-->
        
      </head>
      <body>
        <a class="..." id="..." data-modal="toggle" href="#">
    	  Example link
    	</a>
    
    	<input class="form-control" type="text">
    
    	<img src="..." alt="...">
    
    	<input type="text" disabled>
    
    	<input type="checkbox" value="1" checked>
    
    	<select>
    	  <option value="1" selected>1</option>
    	</select>
    
    
    	<script src="code-guide.js"></script>
      </body>
    </html>
    

      

  • 相关阅读:
    C#生成唯一码方法
    解剖常用软件程序都用什么语言开发
    Unity3D笔记七 GUILayout
    函数的递归
    函数
    函数的参数
    函数的返回值
    函数的定义
    文件处理
    集合
  • 原文地址:https://www.cnblogs.com/shenggen/p/4769923.html
Copyright © 2011-2022 走看看