CSS 能够对网页中元素位置的排版进行像素级精确控制, 实现美化页面的效果. 能够做到页面的样式和结构分离
也就是控制页面展示效果
选择器 + {一条/N条声明}
选择器决定针对谁修改 (找谁)
声明决定修改啥. (干啥)
声明的属性是键值对. 使用 ; 区分键值对, 使用 : 区分键和值.
将css嵌套到html页面中
优点: 这样做能够让样式和页面结构分离.
缺点: 分离的还不够彻底. 尤其是 css 内容多的时候
通过 style 属性, 来指定某个标签的样式.
只适合于写简单样式. 只针对某个标签生效.
缺点: 不能写太复杂的样式.
这种写法优先级较高, 会覆盖其他的样式.
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Documenttitle>
head>
<style>
p{
color: red;
/* 这是注释 */
}
style>
<body>
<p>hello worldp>
<h1 style="color: blue; font-size: 80px;">你好h1>
body>
html>
这个示例说明行内样式表的优先级比内部样式表的优先级高~
实际开发中最常用的方式.
创建一个 css 文件.
使用 link 标签引入 css
<link rel="stylesheet" href="[CSS文件路径]">
1. 基础选择器: 单个选择器构成的
标签选择器
类选择器
id 选择器
通配符选择器
2. 复合选择器: 把多种基础选择器综合运用起来.
后代选择器
子选择器
并集选择器
伪类选择器
文档
特点:
能快速为同一类型的标签都选择出来.
但是不能差异化选择
<style>
p {
color: red;
}
div {
color: green;
}
style>
<p>咬人猫p>
<p>咬人猫p>
<p>咬人猫p>
<div>阿叶君div>
<div>阿叶君div>
<div>阿叶君div>
特点:
差异化表示不同的标签
可以让多个标签的都使用同一个标签.
<style>
.blue {
color: blue;
}
style>
<div class="blue">咬人猫div>
<div>咬人猫div>
可以多个类名,会叠加效果
和类选择器类似.
CSS 中使用 # 开头表示 id 选择器
id 选择器的值和 html 中某个元素的 id 值相同
html 的元素 id 不必带 #
id 是唯一的, 不能被多个标签使用 (是和 类选择器 最大的区别)
使用 * 的定义, 选取所有的标签
* {
color: red;
}
通配符选择器是在实际应用开发中用来针对页面中所有元素默认样式进行消除,主要用来消除边距。
页面的所有内容都会被改成 红色 .
不需要被页面结构调用
作用 | 特点 | |
---|---|---|
标签选择器 | 能选出所有相同的标签 | 不能差异化选择 |
类选择器 | 能选出一个或多个标签 | 根据需求选择,最灵活,最常用 |
id选择器 | 能选出一个标签 | 同一个id在一个HTML中只能出现一次 |
通配符选择器 | 选择所有标签 | 特殊情况使用 |
将基础的选择器进行组合
又叫包含选择器. 选择某个父元素中的某个子元素.
元素1 元素2 {样式声明}
元素 1 和 元素 2 要使用空格分割
元素 1 是父级, 元素 2 是子级, 只选元素 2 , 不影响元素 1
head>
<style>
/* 第一种方法: */
/* ol li {
color: red;
} */
/* 第二种方法 */
/* .hobby li {
color: red;
} */
/* 第三种方法 */
li a{
color: red;
}
style>
<body>
<ul>
<li>吃饭li>
<li>吃饭li>
<li>吃饭li>
ul>
<ol class="hobby">
<li>吃饭li>
<li>吃饭li>
<li>
<a href="#">吃饭a>
li>
ol>
body>
html>
使用来定义元素状态的
a:link 选择未被访问过的链接
a:visited 选择已经被访问过的链接
a:hover 选择鼠标指针悬停上的链接
a:active 选择活动链接(鼠标按下了但是未弹起)
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Documenttitle>
<style>
a{
color: black;
}
a:hover{
color: red;
}
a:active{
color: green;
}
input{
color: blue;
}
input:hover{
color: aqua;
}
input:active{
color: yellow;
}
style>
head>
<body>
<a href="#">不跳转a>
<br>
<input type="button" value="按钮" name="" id="">
body>
html>
选择器 | 作用 | 注意事项 |
---|---|---|
后代选择器 | 选择后代元素 | 可以是孙子元素 |
子选择器 | 选择子元素 | 只能选亲儿子,不能选孙儿子 |
并集选择器 | 选择相同样式的元素 | 代码重用 |
链接伪类选择器 | 选择不同状态的链接 | a:hover |
:focuse伪类选择器 | 选择被选中的元素 | input:focus |
参考文档CSS 参考手册 (w3school.com.cn)
color: red;
color: #ff0000;
color: rgb(255, 0, 0);
font-weight
font-style
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Documenttitle>
<style>
h1{
text-align: left;
}
h2{
text-align: center;
text-decoration: overline;
}
h3{
text-align: right;
text-decoration: line-through;
}
p{
/* text-indent: 20px; */
text-indent: 2em;
text-decoration: underline;
line-height: 200px;
}
a{
text-decoration: none;
}
style>
head>
<body>
<h1>靠左h1>
<h2>居中h2>
<h3>靠右h3>
<p>哥,别学了。我承认我被卷破防了,我再也不和你比学习了,我彻彻底底的被击败了,就像小丑一样落荒而逃,和你相比我的努力实在是太可笑了,没有意义的,我已经认识到了,无论我怎么努力也不可能超过你,就算我一天学25个小时也永远追不上你的进度,看着你的笔尖落在算草纸上,就好像刀尖划在我的自尊心上一样,我彻彻底底的被击败了,甚至没有一点还手的能力。就这样吧,我天生不是这块料,书已经出门的时候被我扔垃圾桶里了,面对天书一样的数学你谈笑间就的出答案而我抓耳挠腮憋红了脸只能说一句:这道题是不是应该…这么做?你无情的嘲笑把我的内心深处的自尊打的粉碎,是我错了一开始就错了,从我决定跟着你去图书馆偷偷看你学习的进度的时候就错了,妄图和你追求同样的进度就好比和霍金比赛跑步和科比直升机驾驶一样荒唐无稽。那就到此为止吧,再继续学就不礼貌了!你是未来之星,国家栋梁,是成语里面的学富五车,才高八斗,是都市小说里的城市之光,是俗语里的天秀之人,是粤语里的巴鸠撚闭,是武侠小说里的人中龙,是吾日三省吾身的自律者,是相亲节目里面的心动嘉宾,是自然界的丛林之王,是世间所有丑与恶的睡弃者,是世间所有美与好的创造者,一想到我与你这群优秀的人呼吸同一股空气,我就忍不住羞耻与自卑。再见,我去睡觉了。p>
<a href="#">不跳转a>
body>
html>
background-color: [指定颜色]#####
background-repeat: [平铺方式]
background-size: length|percentage|cover|contain;
通过 border-radius 使边框带圆角效果.
border-radius: length;
length 是内切圆的半径. 数值越大, 弧线越强烈
border-radius: 10px 20px 30px 40px;
等价于
border-top-left-radius:10px;
border-top-right-radius:20px;
border-bottom-right-radius:30px;
border-bottom-left-radius:40px;
h1 - h6
p
div
ul
ol
li
特点:
独占一行
高度, 宽度, 内外边距, 行高都可以控制.
宽度默认是父级元素宽度的 100% (和父元素一样宽)
是一个容器(盒子), 里面可以放行内和块级元素
<style>
a{
display: block;
}
style>
head>
<body>
<a href="#">链接1a>
<a href="#">链接2a>
body>
html>
<style>
div{
width: 200px;
height: 100px;
/* border-color: black;
border-style: solid;
border-width: 10px; */
border: black solid 10px;
box-sizing: border-box;
}
style>
head>
<body>
<div>
div>
body>
padding 设置内容和边框之间的距离.
<style>
div{
width: 200px;
height: 100px;
/* padding-left: 5px;
padding-right: 5xp;
padding-top: 5px;
padding-bottom: 5px; */
padding: 5px 5px 5px 5px;
}
style>
head>
<body>
<div>
这是一个div
div>
body>
html>
<style>
div{
border: solid green 5px;
width: 200px;
height: 100px;
margin: auto;
text-align: center;
}
style>
head>
<body>
<div>sasasdiv>
<div>sasaadiv>
<div>aasasdiv>
body>
html>
有两种方式可以打开 Chrome 调试工具
直接按 F12 键
鼠标右键页面 => 检查元素
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Documenttitle>
<style>
.box{
width: 308px;
height: 204px;
border: #d8dad8 solid 2px;
}
.title{
padding-left: 40px;
border-bottom: 2px dotted #e8ebe8;
}
.item{
font-size: 16px;
flood-color: #898b76;
padding-left: 25px;
line-height: 28px;
padding-top: 10px;
}
style>
head>
<body>
<div class="box">
<div class="title">广告版div>
<div class="content">
<div class="item">赔钱清仓甩卖,全场一律一折div>
<div class="item">赔钱清仓甩卖,全场一律一折div>
<div class="item">赔钱清仓甩卖,全场一律一折div>
<div class="item">赔钱清仓甩卖,全场一律一折div>
div>
div>
body>
html>
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Documenttitle>
<style>
a{
color: blue;
text-decoration: none;
}
a:hover{
text-decoration: underline;
}
table{
width: 536px;
}
.title .col-1{
font-size: 20px;
font-weight: bolder;
}
.col-1{
width: 80%;
text-align: left;
}
.col-2{
width: 20%;
text-align: center;
}
.icon{
background-image: url(./刷新.png);
width: 24px;
height: 24px;
background-size: 100% 100%;
display: inline-block;
vertical-align: bottom;
}
.content{
font-size: 18px;
line-height: 40px;
}
.content .col-1,
.content.col-2{
border-bottom: 2px solid #f3f3f3;
}
.num{
font-size: 20px;
color: #fffff3;
}
.first{
background-color: #f54545;
padding-right: 8px;
}
.second{
background-color: #ff8547;
padding-right: 8px;
}
.third{
background-color: #ffac38;
padding-right: 8px;
}
.other{
background-color: #8eb9f5;
padding-right: 8px;
}
style>
head>
<body>
<table cellspacing="0px">
<th class="title col-1">百度热榜th>
<th class="title col-2"><a href="#">换一换<span class="icon">span>a>th>
<tr class="content">
<td class="col-1"><span class="num first">1span><a href="#">浙大回应不开除强奸犯学生a>td>
<td class="col-2">474万td>
tr>
<tr class="content">
<td class="col-1"><span class="second first">2span><a href="#">浙大回应不开除强奸犯学生a>td>
<td class="col-2">474万td>
tr>
<tr class="content">
<td class="col-1"><span class="third first">3span><a href="#">浙大回应不开除强奸犯学生a>td>
<td class="col-2">474万td>
tr>
<tr class="content">
<td class="col-1"><span class="other first">4span><a href="#">浙大回应不开除强奸犯学生a>td>
<td class="col-2">474万td>
tr>
table>
body>
html>
接下来会持续更新,敬请期待~