css介绍
css(cascading style sheet,层叠样式表)定义如何显示html元素。
当浏览器读到一个样式表,它就会按照这个样式表来对文档进行格式化(渲染)。
每个css样式由两个组成部分:选择器和声明。声明又包括属性和属性值。每个声明之后用分号结束。
/*这是注释*/
注释是代码之母。–摘自哪吒语录
行内式是在标记的style属性中设定css样式。不推荐大规模使用。
<p style="color: red">hello world.</p>
嵌入式是将css样式集中写在网页的标签对的标签对中。格式如下:
<head> <meta chart="utf-8"> <title>title</title> <style> p{ background-color: red; } </style></head>
外部样式就是将css写在一个单独的文件中,然后在页面进行引入即可。推荐使用此方式。
<link href="mystyle.css" rel="stylesheet" type="text/css"/>
p {color: "red";}
#i1 { background-color: red;}
.c1 { font-size: 14px;}p.c1 { color: red;}
注意:
样式类名不要用数字开头(有的浏览器不认)。
标签中的class属性如果有多个,要用空格分隔。
通用即代表所有
* { color: white;}
解析:第一个div 后面的div包括嵌套的标签都会被渲染
div div {color: deeppink}
/*li内部的a标签设置字体颜色*/li a { color: green;}
/*选择所有父级是 <div> 元素的 <p> 元素*/div>p { font-family: "arial black", arial-black, cursive;}
/*选择所有紧接着<div>元素之后的<p>元素*/div+p { margin: 5px;}
/*i1后面所有的兄弟p标签*/#i1~p { border: 2px solid royalblue;}
/*用于选取带有指定属性的元素。*/p[title] { color: red;}/*用于选取带有指定属性和值的元素。*/p[title="213"] { color: green;}
不怎么常用的属性选择器
/*找到所有title属性以hello开头的元素*/[title^="hello"] { color: red;}/*找到所有title属性以hello结尾的元素*/[title$="hello"] { color: yellow;}/*找到所有title属性中包含(字符串包含)hello的元素*/[title*="hello"] { color: red;}/*找到所有title属性(有多个值或值以空格分割)中有一个值为hello的元素:*/[title~="hello"] { color: green;}
当多个元素的样式相同的时候,我们没有必要重复地为每个元素都设置样式,我们可以通过在多个选择器之间使用逗号分隔的分组选择器来统一设置元素样式。
例如:
div, p { color: red;}
上面的代码为div标签和p标签统一设置字体为红色。
通常,我们会分两行来写,更清晰:
div,p { color: red;}
多种选择器可以混合起来使用,比如:.c1类内部所有p标签设置字体颜色为红色。
.c1 p { color: red;}
–关于标签嵌套:通常块级元素可以包含内联元素或某些块级元素,但内联元素不能包含块级元素,它只能包含其它内联元素。
/* 未访问的链接 */a:link { color: #ff0000}/* 已访问的链接 */a:visited { color: #00ff00} /* 鼠标移动到链接上 */a:hover { color: #ff00ff} /* 选定的链接 */ a:active { color表示思乡的诗句: #0000ff}/*input输入框获取焦点时样式*/input:focus { outline: none; background-color: #eee;}
常用的给首字母设置特殊样式:
p:first-letter { font-size: 48px; color: red;}
/*在每个<p>元素之前插入内容*/p:before { content:"*"; color:red;}
/*在每个<p>元素之后插入内容*/p:after { content:"[?]"; color:blue;}
before和after多用于清除浮动。
继承是css的一个主要特征,它是依赖于祖先-后代的关系的。继承是一种机制,它允许样式不仅可以应用于某个特定的元素,还可以应用于它的后代。例如一个body定义了的字体颜色值也会应用到段落的文本中。
body { color: red;}
此时页面上所有标签都会继承body的字体颜色。然而css继承性的权重是非常低的,是比普通元素的权重还要低的0。
我们只要给对应的标签设置字体颜色就可覆盖掉它继承的样式。
p { color: green;}
此外,继承是css重要的一部分,我们甚至不用去考虑它为什么能够这样,但css继承也是有限制的。有一些属性不能被继承,如:border, margin, padding, background等。
我们上面学了很多的选择器,也就是说在一个html页面中有很多种方式找到一个元素并且为其设置样式,那浏览器根据什么来决定应该应用哪个样式呢?
其实是按照不同选择器的权重来决定的,具体的选择器权重计算方式如下图:
除此之外还可以通过添加 !important方式来强制让样式生效,但并不推荐使用。因为如果过多的使用!important会使样式文件混乱不易维护。
万不得已可以使用!important
width属性可以为元素设置宽度。
height属性可以为元素设置高度。
块级标签才能设置宽度,内联标签的宽度由内容来决定。
font-family可以把多个字体名称作为一个“回退”系统来保存。如果浏览器不支持第一个字体,则会尝试下一个。浏览器会使用它可识别的第一个值。
简单实例:
body { font-family: "microsoft yahei", "微软雅黑", "arial", sans-rif}
p { font-size: 14px;}
如果设置成inherit表示继承父元素的字体大小值。
font-weight用来设置字体的字重(粗细)。
颜色属性被用来设置文字的颜色。
颜色是通过css最经常的指定:
十六进制值 – 如: #ff0000一个rgb值 – 如: rgb(255,0,0)颜色的名称 – 如: red还有rgba(255,0,0,0.3),第四个值为alpha, 指定了色彩的透明度/不透明度,它的范围为0.0到1.0之间。
字体属性综合实例:
<!doctype html><html lang="en"><head> <meta chart="utf-8"> <title>title</title> <style> /*非重点*/ body{ font-family: "microsoft yahei", "微软雅黑", "arial", sans-rif } /*字体的大小*/ div{ font-size: 20px; } /*字体的粗细*/ div{ font-weight: normal; } /*字体的颜色*/ div{ /*color: yellow;*/ /*color: #ff5289;*/ /*color: rgb(255,0,255);*/ color: rgba(255,0,255,0.3); } </style></head><body><div> 一行白鹭上青天</div></body></html>
text-align 属性规定元素中的文本的水平对齐方式。
text-decoration 属性用来给文字添加特殊效果。
常用的为去掉a标签默认的自划线:
a { text-decoration: none;}
将段落的第一行缩进 32像素:
p { text-indent: 32px;}
文字属性综合实例:
<!doctype html><html lang="en"><head> <meta chart="utf-8"> <title>title</title> <style> /*文字对齐方式*/ /*div{*/ /* width: 100px;*/ /* background: darkorchid;*/ /* text-align: center;*/ /*}*/ /*文字装饰*/ /*div{*/ /* width: 100px;*/ /* background: yellow;*/ /* text-decoration: underline;*/ /* text-decoration: overline;*/ /* text-decoration: line-through;*/ /*}*/ /*去掉a标签的下划线*/ /*a{ text-decoration: none}*/ /*去掉li无序列表的圆点*/ /*li{list-style: none}*/ /*缩进与字间距*/ /*p,div{*/ /* !*缩进*!*/ /* text-indent: 32px;*/ /* !*字间距*!*/ /* letter-spacing: 10px;*/ /*}*/ /*行高(文字的高度)*/ div{ width: 400px; height: 200px; background: deeppink; text-align: center; line-height: 200px; } </style></head><body> <div>雅俗共赏</div> <a href="">首页</a> <ul> <li>123</li> <li>456</li> <li>789</li> </ul><p>床前明月光</p><div>举头望明月</div></body></html>
/*背景颜色*/background-color: red;/*背景图片*/background-image: url('1.jpg');/* 背景重复 repeat(默认):背景图片平铺排满整个网页 repeat-x:背景图片只在水平方向上平铺 repeat-y:背景图片只在垂直方向上平铺 no-repeat:背景图片不平铺*/background-repeat: no-repeat; /*背景位置*/background-position: right top;/*background-position: 200px 200px;*/
支持简写:
background:#ffffff url('1.png') no-repeat right top;
背景属性实例:
<!doctype html><html lang="en"><head> <meta chart="utf-8"> <title>title</title> <style> /*文字对齐方式*/ /*div{*/ /* width: 100px;*/ /* background: darkorchid;*/ /* text-align: center;*/ /*}*/ /*文字装饰*/ /*div{*/ /* width: 100px;*/ /* background: yellow;*/ /* text-decoration: underline;*/ /* text-decoration: overline;*/ /* text-decoration: line-through;*/ /*}*/ /*去掉a标签的下划线*/ /*a{ text-decoration: none}*/ 圣诞歌英文版 /*去掉li无序列表的圆点*/ /*li{list-style: none}*/ /*缩进与字间距*/ /*p,div{*/ /* !*缩进*!*/ /* text-indent: 32px;*/ /* !*字间距*!*/ /* letter-spacing: 10px;*/ /*}*/ /*行高(文字的高度)*/ div{ width: 400px; height: 200px; background: deeppink; text-align: center; line-height: 200px; } </style></head><body> <div>雅俗共赏</div> <a href="">首页</a> <ul> <li>123</li> <li>456</li> <li>789</li> </ul><p>床前明月光</p><div>举头望明月</div></body></html>
使用背景图片的一个常见案例就是很多网站会把很多小图标放在一张图片上,然后根据位置去显示图片。减少频繁的图片请求。
边框属性
border-widthborder-styleborder-color#i1 { border-width: 2px; border-style: solid; border-color: red;}
通常使用简写方式:
#i1 { border: 2px solid red;}
边框样式
除了可以统一设置边框外还可以单独为某一个边框设置样式,如下所示:
#i1 { border-top-style:dotted; border-top-color: red; border-right-style:solid; border-bottom-style:dotted; border-left-style:none;}
用这个属性能实现圆角边框的效果。
将border-radius设置为长或高的一半即可得到一个圆形。
用于控制html元素的显示效果。
display:”none”与visibility:hidden的区别:
visibility:hidden: 可以隐藏某个元素,但隐藏的元素仍需占用与未隐藏之前一样的空间。也就是说,该元素虽然被隐藏了,但仍然会影响布局。
display:none: 可以隐藏某个元素,且隐藏的元素不会占用任何空间。也就是说,该元素不但被隐藏了,而且该元素原本占用的空间也会从页面布局中消失。
看图吧:
.margin-test { margin-top:5px; margin-right:10px; margin-bottom:15px; margin-left:20px;}
推荐使用简写:
.margin-test { margin: 5px 10px 15px 20px;}
顺序:上右下左
常见居中:
.mycenter { margin: 0 auto;}
.padding-test { padding-top: 5px; padding-right: 10px; padding-bottom: 15px; padding-left: 20px;}
推荐使用简写:
.padding-test { padding: 5px 10px 15px 20px;}
顺序:上右下左
补充padding的常用简写方式:
提供一个,用于四边;提供两个,第一个用于上-下,第二个用于左-右;如果提供三个,第一个用于上,第二个用于左-右,第三个用于下;提供四个参数值,将按上-右-下-左的顺序作用于四边;在 css 中,任何元素都可以浮动。
浮动元素会生成一个块级框,而不论它本身是何种元素。
关于浮动的两个特点:
浮动的框可以向左或向右移动,直到它的外边缘碰到包含框或另一个浮动框的边框为止。由于浮动框不在文档的普通流中,所以文档的普通流中的块框表现得就像浮动框不存在一样。left:向左浮动
right:向右浮动
none:默认值,不浮动
clear属性规定元素的哪一侧不允许其他浮动元素。
注意:clear属性只会对自身起作用,而不会影响其他元素。
清除浮动的副作用(父标签塌陷问题)
主要有三种方式:
固定高度伪元素清除法overflow:hidden伪元素清除法(使用较多):
.clearfix:after { content: ""; display: block; clear: both;}
<!doctype html><html lang="en"><head> <meta chart="utf-8"> <title>title</title> <style> div{ width: 200px; height: 200px; border: gold solid 2px; overflow: hidden; border-radius: 50%; } img{ max-width: 200px; min-height: 200px; } </style></head><body><div> <img src="网页小练习/1.jpg" alt=""></div></body></html>
static 默认值,无定位,不能当作绝对定位的参照物,并且设置标签对象的left、top等值是不起作用的的。
相对定位是相对于该元素在文档流中的原始位置,即以自己原始位置为参照物。有趣的是,即使设定了元素的相对定位以及偏移值,元素还占有着原来的位置,即占据文档流空间。对象遵循正常文档流,但将依据top,right,bottom,left等属性在正常文档流中偏移位置。而其层叠通过z-index属性定义。
注意:position:relative的一个主要用法:方便绝对定位元素找到参照物。
定义:设置为绝对定位的元素框从文档流完全删除,并相对于最近的已定位祖先元素定位,如果元素没有已定位的祖先元素,那么它的位置相对于最初的包含块(即body元素)。元素原先在正常文档流中所占的空间会关闭,就好像该元素原来不存在一样。元素定位后生成一个块级框,而不论原来它在正常流中生成何种类型的框。
重点:如果父级设置了position属性,例如position:relative;,那么子元素就会以父级的左上角为原始点进行定位。这样能很好的解决自适应网站的标签偏离问题,即父级为自适应的,那我子元素就设置position:absolute;父元素设置position:relative;,然后top、right、bottom、left用百分比宽度表示。
另外,对象脱离正常文档流,使用top,right,bottom,left等属性进行绝对定位。而其层叠通过z-index属性定义。
fixed:对象脱离正常文档流,使用top,right,bottom,left等属性以窗口为参考点进行定位,当出现滚动条时,对象不会随着滚动。而其层叠通过z-index属性 定义。 注意点: 一个元素若设置了 position:absolute | fixed; 则该元素就不能设置float。这 是一个常识性的知识点,因为这是两个不同的流,一个是浮动流,另一个是“定位流”。但是 relative 却可以。因为它原本所占的空间仍然占据文档流。
在理论上,被设置为fixed的元素会被定位于浏览器窗口的一个指定坐标,不论窗口是否滚动,它都会固定在这个位置。
返回顶层示例代码:
<!doctype html><html lang="en"><head> <meta chart="utf-8"> <title>title</title> <style> .a{ height: 1800px; background-color: #ff5289; } .b{ height: 50px; width: 50px; background-color: green; position: fixed; bottom: 10px; right: 10px; } </style></head><body><div class="a"></div><div class="b">点击返回</div></body></html>
#i2 { z-index: 999;}
设置对象的层叠顺序。
z-index 值表示谁压着谁,数值大的压盖住数值小的,只有定位了的元素,才能有z-index,也就是说,不管相对定位,绝对定位,固定定位,都可以使用z-index,而浮动元素不能使用z-indexz-index值没有单位,就是一个正整数,默认的z-index值为0如果大家都没有z-index值,或者z-index值一样,那么谁写在html后面,谁在上面压着别人,定位了元素,永远压住没有定位的元素。从父现象:父亲怂了,儿子再牛逼也没用自定义模态框示例:
<!doctype html><html lang="en"><head> <meta chart="utf-8"> <title>title</title> <style> .a{ position: fixed; /*opacity: 0.4;*/ top: 0; bottom: 0; left: 0; right: 0; background-color:rgba(255,192,203,0.4); /*z-index:200;*/ } .b{ position: fixed; width: 200px; height: 200px; bottom: 200px; background-color: white; z-index: 1; top: 50%; left: 50%; margin: -100px 0 0 -100px; } </style></head><body> <div class="a">123</div><div class="b">dddddddd</div></body></html>
用来定义透明效果。取值范围是0~1,0是完全透明,1是完全不透明。
完成如图所示网页设计:
*{ margin: 0; padding: 0;}a{ text-decoration: none;}li{ list-style: none;}.left{ width: 20%; height: 100%; position: fixed; top: 0; background-color:#4e4e4e ;}.left .arator{ width: 70px; height: 70px; overflow: hidden; border-radius:50% ; margin: 20px auto; border: yellow solid 3px;}.left img{ max-width: 75px; min-height: 70px;}.left .name,.left .title{ color: #a3a3a3; text-align: center;}.left .title{ margin-top: 10px;}.left .tag ul li{ text-align: center;}.tag ul li a{ color: #a3a3a3;}.tag ul li a:hover{ color: white;}.left .tag{ margin-top: 80px;}.right{ width: 80%; background-color: #eeeeee; float: right;}.right .article{ width: 700px; background-color: white; margin: 20px 0 20px 15px; box-shadow: 3px 3px 3px black;}.article .head .title{ font-size: 36px; padding-left: 20px;}.article .head .data{ margin-left: 430px;}.article .head{ border-left: red 5px solid;}.article .body{ 燕山学校 margin-top: 10px; border-bottom: black 1px solid; padding-bottom: 10px;}.article .body p{ text-indent: 30px;}.article .down{ margin-top: 10px; padding-bottom: 15px;}.article .down span{ padding-left: 20px;}
<!doctype html><html lang="en"><head> <meta chart="utf-8"> <title>内涵段子</title> <link rel="stylesheet" href="blog.css"></head><body><div class="left"> <div class="arator"> <img src="1.jpg" alt=""> </div> <div class="name">蔡徐坤的快播</div> <div class="title">天王盖地虎</div> <div class="tag"> <ul> <li><a href="">网银支付</a></li> <li><a href="">微信支付</a></li> <li><a href="">支付宝支付</a></li> </ul> </div> <div class="tag"> <ul> <li><a href="">#python</a></li> <li><a href="">#java</a></li> <li><a href="">#go</a></li> </ul> </div></div><div class="right"> <div class="article"> <div class="head"> <span class="title">天线宝宝</span> <span class="data">2019-10-13</span> </div> <div class="body"> <p>真好看,太精彩了</p> </div> <div class="down"> <span>#喜羊羊</span> <span>#懒羊羊</span> </div> </div></div> <!-- 以下都是重复代码 --><div class="right"> <div class="article"> <div class="head"> <span class="title">天线宝宝</span> <span class="data">2019-10-13</span> </div> <div class="body"> <p>真好看,太精彩了</p> </div> <div class="down"> <span>#喜羊羊</span> <span>#懒羊羊</span> </div> </div></div><div class="right"> <div class="article"> <div class="head"> <span class="title">天线宝宝</span> <span class="data">2019-10-13</span> </div> <div class="body"> <p>真好看,太精彩了</p> </div> <div class="down"> <span>#喜羊羊</span> <span>#懒羊羊</span> </div> </div></div><div class="right"> <div class="article"> <div class="head"> <span class="title">天线宝宝</span> <span class="data">2019-10-13</span> </div> <div class="body"> <p>真好看,太精彩了</p> </div> <div class="down"> <span>#喜羊羊</span> <span>#懒羊羊</span> </div> </div></div> <div class="right"> <div class="article"> <div class="head"> <span 元宵节的诗class="title">天线宝宝</span> <span class="data">2019-10-13</span> </div> <div class="body"> <p>真好看,太精彩了</p> </div> <div class="down"> <span>#喜羊羊</span> <span>#懒羊羊</span> </div> </div></div></body></html>
本文发布于:2023-04-07 05:46:16,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/0cbcf4cf4b6b0e6dc5dc36df0825b1e8.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:前端之CSS基础及使用方法.doc
本文 PDF 下载地址:前端之CSS基础及使用方法.pdf
留言与评论(共有 0 条评论) |