HTML+CSS+JS基础知识

HTML+CSS+JS基础知识

 

目录

对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">

 

 

原文地址:https://www.cnblogs.com/IOS-Developer/p/4174373.html