标签:注释 样式 范围 col font head 页面 nbsp 标签
注释:/* */
页面内css样式写在<head><style></style></head>中(内部样式表,作用范围为本页面)
选择器{
属性:值;
属性:值;
}
标签选择器:选择器写法和标签一致。
h1{
font-size:22px;
}
类选择器:
.red{
color:red;
}
<h1 class="red"></h1>
ID选择器:
#green{
color:#00ff00;
}
<p id="green"></p>
标签:注释 样式 范围 col font head 页面 nbsp 标签
原文地址:https://www.cnblogs.com/lgqblog/p/10208031.html