css常用的属性
width:宽度;
height: 高度;
width:800px; height: 800px;
或
width:100%;
height:15%;
简单而言就是给一个东西设置他的宽和高,使之达到满意的效果;
background:背景(是一个符合属性)
举例:
background: red; background: green; background: blue;
red(红色)green(绿色) blue(蓝色 )这是最常见的三种颜色
字体设置
font-size: 50px; /*字体大小*/ font-weight,color; /*字体倾斜*/ font-weight:bold; /*字体粗细*/ color:red;/*字体颜色*/
文本
text-align: center;/*行高*/ line-height: 50px;/*水平居中*/
display: flex;/*弹性分布*/
justify-content: space-around;/*均匀分布*/
list-style: none;/*去黑点*/
文本的一些属性可以使文本内容变得更直观,可以简化和美观文本内容。