Fork me on GitHub

CSS技巧

这几个CSS技巧,可以用在项目上,帮助自己很好地整理自己的元素并让他们看起来挺不错的。

黑白图像

这段代码会让你的彩色照片显示为黑白照片。

1
img.desaturate { filter: grayscale(100%); -webkit-filter: grayscale(100%); -moz-filter: grayscale(100%); -ms-filter: grayscale(100%); -o-filter: grayscale(100%);}

使用:not()在菜单上应用/取消应用边框

先给每一个菜单项添加边框

1
/* add border*/.nav li {border=right: 1px solid #666;}

然后再出去最后一个元素

1
//remove border /.nav li: last-child {border-right: none;}

可以直接使用:not()伪类来应用元素:

1
.nav li:not(:last-child) {border-right: 1px solid #666;}

这样代码就干净,易读,易于理解了。
当然,如果你的新元素有兄弟元素的话,也可以使用通用的兄弟选择符(~):

1
..nav li: first-child ~ li {border-left: 1px solid #666;}

页面顶部阴影

下面这个简单的CSS3代码片段可以给网页加上漂亮的顶部阴影效果:

1
body:before { content: ""; position: fixed; top: -10px; left: 0; width: 100%; height: 10px; -webkit-box-shadow: 0px 0px 10px rgba(0,0,0,.8); -moz-box-shadow: 0px 0px 10px rgba(0,0,0,.8); box-shadow: 0px 0px 10px rgba(0,0,0,.8); z-index: 100;}

给body添加行高

你不需要分别添加line-height到每个p, h标记等,只要添加到body即可:

1
body{ line-height: 1;}

这样文本元素就可以很容易地从body继承。

##所有一切都垂直居中
要将所有元素垂直居中,太简单了:

1
html, body { height: 100%; margin: 0;}body { -webkit-align-items: center; -ms-flex-align: center; align-items: center; display: -webkit-flex; display: flex;}

注意: 在IE11中要小心flexbox。

逗号分隔地列表

让HTML列表项看上去像一个真正地,用逗号分隔地列表:

1
ul > li:not(:last-child)::after { content: ",";}

堆最后一个列表项使用:not()伪类。

使用负地nth-child选择项目

在CSS中使用负地nth-child选择项目1到项目n。

1
li { display: none;}/* select items 1 through 3 and display them */li:nth-child(-n+3) { display: block;}

对图标使用SVG

我们没有理由不对图标使用SVG:

1
.logo { background: url("logo.svg");}

SVG对所有地分辨率类型都具有良好地扩展性,并支持所有浏览器都回归到IE9。这样可以避开.png、.jpg或.gif文件了。

优化显示文本

有时,字体并不能在所有设备上都达到最佳地显示,所以可以让设备浏览器来帮助你:

1
html { -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;}

注: 请负责人地使用optimizeLegibility。此外,IE/Edge没有text-rendering支持。

对纯CSS滑块使用max-height

使用max-height和溢出隐藏来实现只有CSS地滑块:

1
.slider ul { max-height: 0; overlow: hidden;}.slider:hover ul { max-height: 1000px; transition: .3s ease;}

继承box-sizing

让box-sizing继承html:

1
html { box-sizing: border-box;}*, *:before, *:after { box-sizing: inherit;}

这样在插件或杠杆其他行为的其他组件中就能更容易地改变 box-sizing 了。

表格单元格等宽

表格工作起来很麻烦,所以务必尽量使用 table-layout: fixed 来保持单元格的等宽:

1
.calendar { table-layout: fixed;}

使用Flexbox摆脱外边距地各种hack

当需要用到列分隔符时,通过flexbox的 space-between 属性,你就可以摆脱nth-,first-,和 last-child 的hack了:

1
.list { display: flex; justify-content: space-between;}.list .person { flex-basis: 23%;}

现在,列表分隔符就会在均匀间隔地位置出现。

使用属性选择器用于空链接

当a元素没有文本值,但 href 属性有链接的时候显示链接:

1
a[href^="http"]:empty::before { content: attr(href);

检测鼠标双击

HTML

1
<div class="test3"> <span><input type="text" value=" " readonly="true" /> <a href="http://renpingjun.com">Double click me</a></span></div>

CSS

1
.test3 span { position: relative;}.test3 span a { position: relative; z-index: 2;}.test3 span a:hover, .test3 span a:active { z-index: 4;}.test3 span input { background: transparent; border: 0; cursor: pointer; position: absolute; top: -1px; left: 0; width: 101%; /* Hacky */ height: 301%; /* Hacky */ z-index: 3;}.test3 span input:focus { background: transparent; border: 0; z-index: 1;}

CSS写出三角形

1
/* create an arrow that points up */div.arrow-up { width:0px; height:0px; border-left:5px solid transparent; /* left arrow slant */ border-right:5px solid transparent; /* right arrow slant */ border-bottom:5px solid #2f2f2f; /* bottom, add background color here */ font-size:0px; line-height:0px;}/* create an arrow that points down */div.arrow-down { width:0px; height:0px; border-left:5px solid transparent; border-right:5px solid transparent; border-top:5px solid #2f2f2f; font-size:0px; line-height:0px;}/* create an arrow that points left */div.arrow-left { width:0px; height:0px; border-bottom:5px solid transparent; /* left arrow slant */ border-top:5px solid transparent; /* right arrow slant */ border-right:5px solid #2f2f2f; /* bottom, add background color here */ font-size:0px; line-height:0px;}/* create an arrow that points right */div.arrow-right { width:0px; height:0px; border-bottom:5px solid transparent; /* left arrow slant */ border-top:5px solid transparent; /* right arrow slant */ border-left:5px solid #2f2f2f; /* bottom, add background color here */ font-size:0px; line-height:0px;}

CSS3 calc()的使用

calc() 用法类似于函数,能够给元素设置动态的值:

1
/* basic calc */.simpleBlock { width: calc(100% - 100px);}/* calc in calc */.complexBlock { width: calc(100% - 50% / 3); padding: 5px calc(3% - 2px); margin-left: calc(10% + 10px);}

文本渐变

文本渐变效果很流行,使用 CSS3 能够很简单就实现:

1
h2[data-text] { position: relative;}h2[data-text]::after { content: attr(data-text); z-index: 10; color: #e3e3e3; position: absolute; top: 0; left: 0; -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,0)), color-stop(50%, rgba(0,0,0,1)), to(rgba(0,0,0,0)));}

禁用鼠标事件

CSS3 新增的 pointer-events 让你能够禁用元素的鼠标事件,例如,一个连接如果设置了下面的样式就无法点击了。

1
.disabled { pointer-events: none; }

模糊文本

简单但很漂亮的文本模糊效果,简单又好看!

1
.blur { color: transparent; text-shadow: 0 0 5px rgba(0,0,0,0.5);}

简单的方法调整图片大小

1
2
3
4
.content img {
height:auto;
width:500px;
}

IE HTML Hack

1
2
div#content {width: 580px}
* html body div#content {width: 600px}

CSS 阴影

1
2
3
4
5
.shadow {
-moz-box-shadow: 3px 3px 5px 6px #ccc;
-webkit-box-shadow: 3px 3px 5px 6px #ccc;
box-shadow: 3px 3px 5px 6px #ccc;
}

CSS首字放大

1
2
3
4
5
6
7
8
9
p:first-letter {
display: block;
float: left;
margin: 5px 5px 0 0;
color: red;
font-size: 1.4em;
background: #ddd;
font-family: Helvetica;
}

用CSS反转图像

1
2
3
4
5
6
7
8
#content img {
-moz-transform: scaleX(-1);
-o-transform: scaleX(-1);
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
filter: FlipH;
-ms-filter: "FlipH";
}

移除被点链接的点框

1
2
3
a {outline: none}
或者
a {outline: 0}

在CSS中使用特殊字体

1
你可以使用CSS来加载特殊字体,你要做的就是把这个TTF格式的字体上传到服务器上,然后使用字体规则在CSS上导入它。

元素透明

1
2
3
4
5
6
.element {
filter:alpha(opacity=50);
-moz-opacity:0.5;
-khtml-opacity: 0.5;
opacity: 0.5;
}

使用CSS显示链接之后的URL

1
2
a:after{content:" (" attr(href) ") ";}
这会在链接锚点后显示URL。你也可以用字体或其他样式定义它。

为手持设备定制特殊样式

1
<link type="text/css" rel="stylesheet" href="handheldstyle.css" media="handheld">

文字的水平居中

1
text-align:center;

link状态的设置顺序

1
2
3
4
a:link
a:visited
a:hover
a:active

用图片充当列表标志

1
2
3
4
5
6
ul {list-style: none}
ul li {
background-image: url("path-to-your-image");
background-repeat: none;
background-position: 0 0.5em;
}

禁止自动换行

1
h1 { white-space:nowrap; }

获得焦点的表单元素

1
input:focus { border: 2px solid green; }

user-select 禁止用户选中文本

1
2
3
div {
user-select: none; /* Standard syntax */
}

清除手机tap事件后element 时候出现的一个高亮

1
2
3
* {
-webkit-tap-highlight-color: rgba(0,0,0,0);
}

增强用户体验,使用伪元素实现增大点击热区

1
2
3
4
5
6
7
8
.btn::befoer{
content:"";
position:absolute;
top:-10px;
right:-10px;
bottom:-10px;
left:-10px;
}

伪元素实现换行,替代换行标签

1
2
3
4
inline-element ::after{
content:"A";
white-space: pre;
}

will-change提高页面滚动、动画等渲染性能

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* 关键字值 */
will-change: auto;
will-change: scroll-position;
will-change: contents;
will-change: transform; /* <custom-ident>示例 */
will-change: opacity; /* <custom-ident>示例 */
will-change: left, top; /* 两个<animateable-feature>示例 */
will-change的使用也要谨慎,遵循最小化影响原则,不要这样直接写在默认状态中,因为will-change会一直挂着:
.will-change {
will-change: transform;
transition: transform 0.3s;
}
.will-change:hover {
transform: scale(1.5);
}
可以让父元素hover的时候,声明will-change,这样,移出的时候就会自动remove,触发的范围基本上是有效元素范围。
.will-change-parent:hover .will-change {
will-change: transform;
}
.will-change {
transition: transform 0.3s;
}
.will-change:hover {
transform: scale(1.5);
}

box-sizing 让元素的宽度、高度包含border和padding

1
2
3
{
box-sizing: border-box;
}

calc() function, 计算属性值

1
2
3
4
div {
width: calc(100% - 100px);
}
例子就是让宽度为100%减去100px的值

css实现不换行、自动换行、强制换行

1
2
3
4
5
6
7
//不换行
white-space:nowrap;
//自动换行
word-wrap: break-word;
word-break: normal;
//强制换行
word-break:break-all;

perspective 透视

1
2
3
4
这个属性的存在决定你看到的元素是2d还是3d。一般设置在包裹元素的父类上。
.div-box {
perspective: 400px;
}

设置图像透明度的两种方式

1
2
opcity:0.6
background:rgba(0,0,0,.6);

position定位属性

1
2
3
4
5
6
position属性指定一个元素(静态的、相对的、绝对或固定)的定位方法的类型。
position的属性值:
absolute:生成绝对定位的元素;
fixed:生成绝对定位的元素,相对于浏览器窗口进行定位;
relative:生成相对定位的元素,相对于其正常位置经行定位。
z-index:指定一个元素的堆叠顺序。

cursor属性

1
2
3
4
5
6
7
8
9
cursor属性定义了鼠标指针放在一个元素边界范围内时所用的光标形状。
CSS提供的cursor值:
pointer :小手指;
help:箭头加问号;
wait:转圈圈;
move:移动光标;
crosshair:十字光标。
通过pointer属性我们可以伪造超链接:
<span style="cursor:pointer;color:blue;">pointer</span>

隐藏没有静音、自动播放的影片

1
2
3
video[autoplay]:not([muted]) {
display: none;
}

Font-Size 基准

1
2
3
4
/* 假设浏览器的默认的大小是 16px , 首先将其设置为10px (font-size:10/16) */
body {font-size:10/16;}
/* 然后就可以用em做统一字体单位了 2.4em = 24px */
h1 {font-size: 2.4 em}

透明容器

1
2
3
4
5
6
.element {
filter:alpha(opacity=50); /* for ie */
-moz-opacity:0.5; /* for ff */
-khtml-opacity: 0.5; /* for webkit as chrome */
opacity: 0.5; /* for opera */
}
Your support will encourage me to continue to create!