为满足网页的需要,来进行前端代码的学习
CSS基础
一:style
<style>
css标签
</styte>
例:对p标签进行更改
<style>
p{
color:red;
/*像素*/
font-size: 30px;
/*背景*/
background: aqua;
/*宽度*/
width: 400px;
}
</style>
二:引入方式
引入文件:
<link rel="stylesheet" href="./CSS/c.css">
行内式:
<div style="color: cyan"; font="10px"; >
CSS引入方式2,行内式
</div>
以及一的方式
三:选择器
类选择器:
.red{
color: red;
}
.size
{
font-size: 20px;
}
id选择器
#two
{
color: aqua;
}
通配符选择器:对说有标签进行定义
*{
color: chartreuse;
}
注:对于同一个标签的同一属性,后面会对前进行覆盖
四:文字样式
大小:
font-size: 20px;
粗细:
font-weight: 700;
倾斜:
font-style: italic;
字体:
font-family: 楷体;
文本对齐方式:
text-align: center;
下划线:
text-decoration: underline;
删除线:
text-decoration: line-through;
上划线:
text-decoration: overline;
无装饰(超链接);
text-decoration: none;
五:段落
p{
/*标签水平居中*/
/*margin: 0 auto;*/
/*设置*/
line-height: 50px;
/*倍数*/
line-height: 1.5;
/*大小*/
font-size: 20px;
/*缩进*/
text-indent: 2em;
}
六:div
很强大的标签,这里就介绍居中
div{
margin: 0 auto;
}
七:body
对于文字,图片的居中,要对他的父类进行修改
八:子类,并集,交集
div>a{
color: red;
}
div p a{
color: #87ceee;
}
p,div,span,h1
{
color: red;
}
p.box
{
color: red;
}
标签:color,text,基础,CSS,div,font,red,size From: https://www.cnblogs.com/JIANGzihao0222/p/17289011.html