CSS样式
修改背景,字体大小颜色等
关键字<style></style>
CSS:选择器 一条或多条声明
选择器:
1.派生选择器:上下文选择器
<!--ol代表有序列表 li代表无序列表 strong代表粗字体-->
<ol>
<p><strong>我是粗体字,不是斜体字,因为我不在列表当中,所以这个规则对我不起作用</strong></p >
<li><strong>我是斜体字。这是因为 strong 元素位于 li 元素内。</strong></li>
<li>我是正常的字体。</li>
</ol>
li strong{
font-style: italic;
font-weight: normal;
}
2.id选择器:
#id名
<div id="dd">这是圆角按钮</div>
#dd{
width: 100px;
height: 20px;
border-color: bisque;
border-style: solid;
border-width: 5px;
border-radius: 10px;
}
3.类选择器:
.类名
<h1 class="center">
This he