目录
CSS高级技巧
1. 精灵图
1.1 为什么需要精灵图
1.2 精灵图(sprites)的使用
1.2 精灵图的使用
案例:拼出自己名字
2. 字体图标
2.1 字体图标的产生
2.2 字体图标的优点
2.3 字体图标的下载
2.4 字体图标的引入
2.4.1 字体文件格式
2. 在 CSS 样式中全局声明字体: 简单理解把这些字体文件通过css引入到我们页面中。
3. html 标签内添加小图标。
4. 给标签定义字体
2.5 字体图标的追加
3. CSS 三角
案例:京东三角
4. CSS 用户界面样式
4.1 什么是界面样式
4.1 鼠标样式 cursor
4.2 轮廓线 outline
4.3 防止拖拽文本域 resize
5. vertical-align 属性应用
5.1 图片、表单和文字对齐
5.2 解决图片底部默认空白缝隙问题
6. 溢出的文字省略号显示
1. 单行文本溢出显示省略号--必须满足三个条件
2. 多行文本溢出显示省略号
7. 常见布局技巧
1. margin负值运用
2. 文字围绕浮动元素
3. 行内块巧妙运用
4. CSS 三角强化
斜三角:秒杀外形
8. CSS 初始化
总结一下吧~总结不易,本节对我有很大的帮助,希望对你也是!!!
CSS高级技巧
1. 精灵图
1.1 为什么需要精灵图
1.2 精灵图(sprites)的使用
1. 精灵技术主要针对于背景图片使用。就是把多个小背景图片整合到一张大图片中。2. 这个大图片也称为 sprites 精灵图 或者 雪碧图3. 移动背景图片位置, 此时可以使用 background-position 。4. 移动的距离就是这个目标图片的 x 和 y 坐标。注意网页中的坐标有所不同5. 因为一般情况下都是往上往左移动,所以数值是负值。6. 使用精灵图的时候需要精确测量,每个小背景图片的大小和位置。
1.2 精灵图的使用
1. 精灵图主要针对于小的背景图片使用。2. 主要借助于背景位置来实现--- background-position 。3. 一般情况下精灵图都是负值。(千万注意网页中的坐标: x轴右边走是正值,左边走是负值, y轴同理。)
案例:拼出自己名字
2. 字体图标
2.1 字体图标的产生
1. 图片文件还是比较大的。2. 图片本身放大和缩小会失真。3. 一旦图片制作完毕想要更换非常复杂。
2.2 字体图标的优点
1. 轻量级:一个图标字体要比一系列的图像要小。一旦字体加载了,图标就会马上渲染出来,减少了服务器请求2. 灵活性:本质其实是文字,可以很随意的改变颜色、产生阴影、透明效果、旋转等3. 兼容性:几乎支持所有的浏览器,请放心使用
2.3 字体图标的下载
1. icomoon 字库 http://icomoon.io 推荐指数 ★★★★★IcoMoon 成立于 2011 年,推出了第一个自定义图标字体生成器,它允许用户选择所需要的图标,使它们成一字型。该字库内容种类繁多,非常全面,唯一的遗憾是国外服务器,打开网速较慢。2. 阿里 iconfont 字库 http://www.iconfont.cn/ 推荐指数 ★★★★★这个是阿里妈妈 M2UX 的一个 iconfont 字体图标字库,包含了淘宝图标库和阿里妈妈图标库。可以使用 AI 制作图标上传生成。 重点是,免费!
2.4 字体图标的引入
2.4.1 字体文件格式
不同浏览器所支持的字体格式是不一样的,字体图标之所以兼容,就是因为包含了主流浏览器支持的字体文件。1. TureType( .ttf )格式.ttf字体是Windows和Mac的最常见的字体,支持这种字体的浏览器有IE9+、Firefox3.5+、Chrome4+、Safari3+、Opera10+、iOS Mobile、Safari4.2+;2. Web Open Font Format( .woff )格式woff字体,支持这种字体的浏览器有IE9+、Firefox3.5+、Chrome6+、Safari3.6+、Opera11.1+;3. Embedded Open Type( .eot )格式.eot字体是IE专用字体,支持这种字体的浏览器有IE4+;4. SVG( .svg )格式.svg字体是基于SVG字体渲染的一种格式,支持这种字体的浏览器有Chrome4+、Safari3.1+、Opera10.0+、iOS Mobile Safari3.2+;
2. 在 CSS 样式中全局声明字体: 简单理解把这些字体文件通过css引入到我们页面中。
@font-face {
font-family: 'icomoon';
src: url('fonts/icomoon.eot?7kkyc2');
src: url('fonts/icomoon.eot?7kkyc2#iefix') format('embedded-opentype'),
url('fonts/icomoon.ttf?7kkyc2') format('truetype'),
url('fonts/icomoon.woff?7kkyc2') format('woff'),
url('fonts/icomoon.svg?7kkyc2#icomoon') format('svg');
font-weight: normal;
font-style: normal;
}
3. html 标签内添加小图标。
<span> </span>
4. 给标签定义字体
span {
font-family: "icomoon";
}
务必保证 这个字体和上面 @font-face 里面的字体保持一致
2.5 字体图标的追加
如果工作中,原来的字体图标不够用了,我们需要添加新的字体图标到原来的字体文件中。把压缩包里面的 selection.json 从新上传 ,然后选中自己想要新的图标,从新下载压缩包,并替换原来的文件即可。
3. CSS 三角
div {
width: 0;
height: 0;
/*为了照顾兼容性*/
line-height: 0;
font-size: 0;
border: 50px solid transparent;
border-left-color: pink;
}
那么当就只画一个小三角的时候,就只用保证其余边都是透明的即可:
案例:京东三角
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
* {
margin: 0;
padding: 0;
}
.box1 {
width: 0;
height: 0;
/* border: 50px pink solid; */
border-top: 50px pink solid;
border-bottom: 50px red solid;
border-left: 50px blue solid;
border-right: 50px green solid;
}
.box2 {
width: 0;
height: 0;
border: 30px solid transparent;
border-top-color: pink;
}
.jd {
position: relative;
width: 120px;
height: 249px;
background-color: pink;
}
.jd span {
position: absolute;
right: 15px;
top: -9px;
width: 0;
height: 0;
/* 为了兼容各种浏览器 */
line-height: 0;
font-size: 0;
border: 5px solid transparent;
border-bottom-color: pink;
}
</style>
</head>
<body>
<!-- <div class="box1"></div> -->
<!-- <div class="box2"></div> -->
<div class="jd">
<span></span>
</div>
</body>
</html>
4. CSS 用户界面样式
4.1 什么是界面样式
1. 更改用户的鼠标样式2. 表单轮廓3. 防止表单域拖拽
4.1 鼠标样式 cursor
li {cursor: pointer; }
属性值 | 描述 |
default | 小白 默认 |
pointer | 小手 |
move | 移动 |
text | 文本 |
not-allowed | 禁止 |
4.2 轮廓线 outline
input {outline: none; }
4.3 防止拖拽文本域 resize
textarea{ resize: none;}
5. vertical-align 属性应用
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
img {
/* 默认,元素放置在父元素的基线上 */
vertical-align: baseline;
/* 跟元素底端对齐 */
vertical-align: bottom;
/* 根元素顶端对齐 */
vertical-align: top;
/* 元素居中对齐 */
vertical-align: middle;
}
</style>
</head>
<body>
<img src="images/ldh.jpg" alt=""> 我不是刘德华,我是gem;
</body>
</html>
vertical-align : baseline | top | middle | bottom
值 | 描述 |
baseline | 默认。元素放置在父元素的基线上 |
top | 把元素的顶端与行中最高元素的顶端对齐 |
middle | 把此元素放置在父元素的中部 |
bottom | 把元素的底端与行中最低的元素的顶端对齐 |
5.1 图片、表单和文字对齐
图片、表单都属于行内块元素,默认的 vertical-align 是基线对齐。此时可以给图片、表单这些行内块元素的 vertical-align 属性设置为 middle 就可以让文字和图片垂直居中对齐了。
5.2 解决图片底部默认空白缝隙问题
1. 给图片添加 vertical-align:middle | top| bottom 等。 (提倡使用的)2. 把图片转换为块级元素 display: block;
6. 溢出的文字省略号显示
1. 单行文本溢出显示省略号
2. 多行文本溢出显示省略号
1. 单行文本溢出显示省略号--必须满足三个条件
/*1. 先强制一行内显示文本*/
white-space: nowrap; ( 默认 normal 自动换行)
/*2. 超出的部分隐藏*/
overflow: hidden;
/*3. 文字用省略号替代超出的部分*/
text-overflow: ellipsis;
2. 多行文本溢出显示省略号
overflow: hidden;
text-overflow: ellipsis;
/* 弹性伸缩盒子模型显示 */
display: -webkit-box;
/* 限制在一个块元素显示的文本的行数 */
-webkit-line-clamp: 2;
/* 设置或检索伸缩盒对象的子元素的排列方式 */
-webkit-box-orient: vertical;
7. 常见布局技巧
1. margin负值运用
给li的定位来提高层级,这样就都不会让每一个盒子的边框被压住;
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
li {
position: relative;
float: left;
list-style: none;
width: 150px;
height: 200px;
border: 1px solid red;
margin-left: -1px;
}
/* ul li:hover {
1.如果盒子没有定位,则鼠标经过添加相对定位即可
position: relative;
border: 1px solid blue;
} */
ul li:hover {
/* 2.如果li都有定位,则利用z-index: 1; 来提高层级 */
z-index: 1;
border: 1px solid blue;
}
</style>
</head>
<body>
<ul>
<li>1</li>
<li>2</li>
</ul>
</body>
</html>
1. 让每个盒子 margin 往左侧移动 -1px 正好压住相邻盒子边框2. 鼠标经过某个盒子的时候,提高当前盒子的层级即可(如果没有有定位,则加相对定位(保留位置),如果有定位,则加z-index )
2. 文字围绕浮动元素
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
* {
margin: 0;
padding: 0;
}
.box {
width: 300px;
height: 70px;
background-color: pink;
margin: 0 auto;
padding: 5px;
}
.pic {
float: left;
width: 120px;
height: 60px;
margin-right: 5px;
}
img {
width: 100%;
}
</style>
</head>
<body>
<div class="box">
<div class="pic">
<img src="images/img.png" alt="">
</div>
【集锦】 热身赛-巴西0-1秘鲁 内马尔替补两人血染赛场
</div>
</body>
</html>
3. 行内块巧妙运用
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
* {
margin: 0;
padding: 0;
}
.box {
text-align: center;
}
.box a {
display: inline-block;
width: 36px;
height: 36px;
background-color: #f7f7f7;
border: 1px solid #ccc;
text-align: center;
line-height: 36px;
text-decoration: none;
color: #333;
}
.box .prev,
.box .next {
width: 85px;
}
.box .current,
.box .elp {
border: 0;
background-color: white;
}
.box input {
height: 36px;
width: 45px;
border: 1px solid #ccc;
outline: none;
}
.box button {
width: 60px;
height: 36px;
background-color: #f7f7f7;
border: 1px solid #ccc;
}
</style>
</head>
<body>
<div class="box">
<a href="#" class="prev"><< 上一页</a>
<a href="#" class="current">2</a>
<a href="#">3</a>
<a href="#">4</a>
<a href="#">5</a>
<a href="#">6</a>
<a href="#" class="elp">...</a>
<a href="#" class="next">>>下一页</a>
到第
<input type="text">
页
<button>确定</button>
</div>
</body>
</html>
1. 把这些链接盒子转换为行内块, 之后给父级指定 text-align:center;2. 利用行内块元素中间有缝隙,并且给父级添加 text-align:center; 行内块元素会水平会居中
4. CSS 三角强化
width: 0;
height: 0;
border-color: transparent red transparent transparent;
border-style: solid;
border-width: 22px 8px 0 0;
斜三角:秒杀外形
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.price {
width: 170px;
height: 24px;
border: 1px solid red;
margin: 0 auto;
line-height: 24px;
}
.miaosha {
position: relative;
float: left;
width: 90px;
height: 24px;
background-color: red;
text-align: center;
color: #fff;
font-weight: 700;
margin-right: 8px;
}
.miaosha i {
position: absolute;
right: 0;
top: 0;
width: 0;
height: 0;
border-color: transparent #fff transparent transparent;
border-style: solid;
border-width: 24px 12px 0 0;
}
.origin {
font-size: 12px;
color: gray;
text-decoration: line-through;
}
</style>
</head>
<body>
<div class="price">
<span class="miaosha">
¥1650
<i></i>
</span>
<span class="origin">¥5650</span>
</div>
</body>
</html>
8. CSS 初始化
不同浏览器对有些标签的默认值是不同的,为了消除不同浏览器对HTML文本呈现的差异,照顾浏览器的兼容,我们需要对CSS 初始化简单理解: CSS初始化是指重设浏览器的样式。 (也称为CSS reset)每个网页都必须首先进行 CSS初始化。这里我们以 京东 CSS 初始化代码为例。
把中文字体的名称用相应的Unicode编码来代替,这样就可以有效的避免浏览器解释CSS代码时候出现乱码的问题。比如:黑体 \9ED1\4F53宋体 \5B8B\4F53微软雅黑 \5FAE\8F6F\96C5\9ED1
/* 把我们所有标签的内外边距清零 */
* {
margin: 0;
padding: 0
}
/* em 和 i 斜体的文字不倾斜 */
em,
i {
font-style: normal
}
/* 去掉li 的小圆点 */
li {
list-style: none
}
img {
/* border 0 照顾低版本浏览器 如果 图片外面包含了链接会有边框的问题 */
border: 0;
/* 取消图片底侧有空白缝隙的问题 */
vertical-align: middle
}
button {
/* 当我们鼠标经过button 按钮的时候,鼠标变成小手 */
cursor: pointer
}
a {
color: #666;
text-decoration: none
}
a:hover {
color: #c81623
}
button,
input {
/* "\5B8B\4F53" 就是宋体的意思 这样浏览器兼容性比较好 */
font-family: Microsoft YaHei, Heiti SC, tahoma, arial, Hiragino Sans GB, "\5B8B\4F53", sans-serif
}
body {
/* CSS3 抗锯齿形 让文字显示的更加清晰 */
-webkit-font-smoothing: antialiased;
background-color: #fff;
font: 12px/1.5 Microsoft YaHei, Heiti SC, tahoma, arial, Hiragino Sans GB, "\5B8B\4F53", sans-serif;
color: #666
}
.hide,
.none {
display: none
}
/* 清除浮动 */
.clearfix:after {
visibility: hidden;
clear: both;
display: block;
content: ".";
height: 0
}
.clearfix {
*zoom: 1
}