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

①页面内部链接:
    <head>
      <style type="text/css">
      /*Cascading Style Sheets Content*/
      </style>
   </head>
②外部链接:
   <head>
     <link rel="stylesheet" type="text/css" href="#">
   </head>
 
注意: rel,type,href缺一不可,否则可能会引用失败!
 
③标签内联:
   <element style="CSS Content">
   or
   <element property="value">
   or
   <element style="CSS Content" property="value">
posted @ 2017-07-12 13:38  千千寰宇  阅读(738)  评论(0编辑  收藏  举报