HTML笔记(二) 在HTML中使用CSS

  • 外部CSS:
<head>
    <link rel="stylesheet" type="text/css" href="mystyle.css">
</head>
  • 内部CSS:
<head>
    <style type="text/css">
        body { background-color: red }
        p { margin-left: 20px }
    </style>
</head>
  • 内联CSS:
<p style = "color: red; margin-left: 20px">This is a paragraph</p>
原文地址:https://www.cnblogs.com/AmitX-moten/p/4787679.html