HTML+CSS+JS基础知识css
目录spa
对HTML+CSS+JS的理解code
基础知识基础
对HTML+CSS+JS的理解样式
基础知识margin
插入样式表的三种方式co
外部样式表:<link rel="stylesheet" type="text/css" href="mystyle.css">
background
内部样式表:<style type="text/css"> body {background-color: red} p {margin-left: 20px} </style>
内联样式:<p style="color: red; margin-left: 20px"
>