首页 > 代码库 > HTML链接/实施CSS的三种方法

HTML链接/实施CSS的三种方法

①页面内部链接:
    <head>
      <style type="text/css">
      /*Cascading Style Sheets Content*/
      </style>
   </head>
②外部链接:
   <head>
     <link rel="stylesheet" type="text/css" href="http://www.mamicode.com/#">
   </head>
 
注意: rel,type,href缺一不可,否则可能会引用失败!
 
③标签内联:
   <element style="CSS Content">
   or
   <element property="value">
   or
   <element style="CSS Content" property="value">

HTML链接/实施CSS的三种方法