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

上一篇:【笔记-前端】div+css排版基础,以及错误记录


下一篇:jdk1.5新特性5之枚举之枚举类型的应用