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