一、内联样式

<p style="color: sienna; margin-left: 20px">
This is a paragraph
</p>

 

二、内部样式

<head>
  <style type="text/css">
    hr {color: sienna;}
    p {margin-left: 20px;}
    body {background-image: url("images/back40.gif");}
  </style>
</head>

 

三、外部样式

<head>
    <link rel="stylesheet" type="text/css" href="mystyle.css" />
</head>

  mystyle.css内部书写:

hr {color: sienna;}
p {margin-left: 20px;}
body {background-image: url("images/back40.gif");}

 

相关文章:

  • 2022-12-23
  • 2022-01-05
  • 2022-01-08
  • 2021-07-15
  • 2021-08-11
  • 2022-12-23
  • 2022-12-23
  • 2021-06-03
猜你喜欢
  • 2022-01-08
  • 2022-12-23
  • 2021-12-23
  • 2022-12-23
  • 2021-11-28
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案