CSS 定义的四种方法

CSS定义总共有四种方法:
  <1>行内式(内联式):<h1 style="color:white;background-color:blue">This is a of Text.</h1>
  <2>内嵌式(内部样式表):<style type="text/css">
             h1{
                color:white;
                background-color:blue
               }
             </style>
  <3>导入式(外部样式表):<style type="text/css">
              @import"mystyle.css";
             </style>
  <4>链接式(外部样式表):<link href="mystyle.css" rel="stylesheet" type="text/css" />

你可能感兴趣的:(css)