标签:sla gui 失败 时间 ble :hover 宽度 垂直居中 blog
:not()
去除导航上不需要的边框body
添加行高nth-child
选择元素max-height
box-sizing
:not()
添加/去除导航上不需要的边框添加边框…
1
2
3
4
5
|
/* 添加边框 */
.nav li {
border-right: 1px solid #666;
}
|
…然后去除最后一个元素的边框…
1
2
3
4
5
|
/* 移除边框 */
.nav li:last-child {
border-right: none;
}
|
…使用伪类 :not()
将样式只应用到你需要的元素上:
1
2
3
|
.nav li:not(:last-child) {
border-right: 1px solid #666;
}
|
当然,你可以使用.nav li + li
或者 .nav li:first-child ~ li,
但是使用 :not()
的意图特别清晰,CSS选择器按照人类描述它的方式定义边框。
body
添加行高你不需要分别为每一个 <p>
, <h*>
等元素添加行高,而是为body
添加:
1
2
3
|
body {
line-height: 1;
}
|
这种方式下,文本元素可以很容易从body
继承。
不,这不是黑魔法,你的确可以垂直居中任何元素:
1
2
3
4
5
6
7
8
9
10
11
12
|
html, body {
height: 100%;
margin: 0;
}
body {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
display: -webkit-flex;
display: flex;
}
|
想让其他元素居中?垂直,水平…任何东西,任何时间,任何位置?CSS-Tricks上有 一个不错的文章 来做到这一切。
注意:IE11上flexbox的一些 缺陷行为。
让列表看起来更像一个真正的逗号分离列表:
1
2
3
|
ul > li:not(:last-child)::after {
content: ",";
}
|
使用伪类:not()
,这样最后一个元素不会被添加逗号。
nth-child
选择元素在CSS使用负nth-child选择1到n的元素。
1
2
3
4
5
6
7
8
9
|
li {
display: none;
}
/* 选择1到3的元素并显示 */
li:nth-child(-n+3) {
display: block;
}
|
或者,你已经学习了一些关于 使用 :not()
,尝试:
1
2
3
4
5
6
7
|
/* select items 1 through 3 and display them */
/* 选择1到3的元素并显示 */
li:not(:nth-child(-n+3)){
display: none;
}
|
这很简单。
没有理由不使用SVG图标:
1
2
3
|
.logo {
background: url("logo.svg");
}
|
SVG对所有分辨率类型具有良好的伸缩性,IE9以上的所有浏览器都支持。所以放弃.png,.jpg或gif-jif等任何文件。
注意:如果你使用SVG图标按钮,同时SVG加载失败,下面能帮助你保持可访问性:
1
2
3
|
.no-svg .icon-only:after {
content: attr(aria-label);
}
|
有些字体在所有的设备上并不是最优显示,因此让设备浏览器来帮忙:
1
2
3
4
5
|
html {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
}
|
注意:请使用optimizeLegibility
。同时,IE/Edge不支持text-rendering
。
max-height
在纯CSS实现的内容滑块上使用max-height
,同时设置overflow hidden:
1
2
3
4
5
6
7
8
9
|
.slider ul {
max-height: 0;
overlow: hidden;
}
.slider:hover ul {
max-height: 1000px;
transition: .3s ease; /* animate to max-height */
}
|
box-sizing
从html
继承box-sizing
:
1
2
3
4
5
6
7
|
html {
box-sizing: border-box;
}
, :before, *:after {
box-sizing: inherit;
}
|
这让插件或使用其他行为的组件能很容易地改变box-sizing
。
使用表格会很痛苦,因此使用table-layout:fixed
来保持单元格相同的宽度:
1
2
3
|
.calendar {
table-layout: fixed;
}
|
无痛表格布局。
当使用列约束时,可以抛弃nth-
,first-
和 last-child的
hacks,而使用flexbox的space-between
属性:
1
2
3
4
5
6
7
8
|
.list {
display: flex;
justify-content: space-between;
}
.list .person {
flex-basis: 23%;
}
|
现在列约束总是等间隔出现。
显示没有文本值但是 href
属性具有链接的 a
元素的链接:
1
2
3
|
a[href^="http"]:empty::before {
content: attr(href);
}
|
这样做很方便。
这些技巧在当前版本的Chrome,Firefox, Safari, 以及Edge, 和IE11可以工作。
标签:sla gui 失败 时间 ble :hover 宽度 垂直居中 blog
原文地址:http://www.cnblogs.com/changningios/p/6408383.html