首页 > web前端 > css教程 > 正文

有关CSS的高级布局技巧

巴扎黑
发布: 2017-03-14 11:36:10
原创
1589 人浏览过

随着 IE8 逐渐退出舞台,很多高级的 CSS 特性都已被浏览器原生支持,再不学下就要过时了。

用 
:empty
登录后复制
登录后复制
区分空元素

兼容性:不支持 IE8
登录后复制
登录后复制
登录后复制
登录后复制

Demo
假如我们有以上列表:

a


b



我们希望可以对空元素和非空元素区别处理,那么有两种方案。

:empty
登录后复制
登录后复制

选择空元素:
.item:empty {
display: none;
}
或者用

:not(:empty)
登录后复制

选择非空元素:
.item:not(:empty) {
border: 1px solid #ccc;
/* ... */
}

:*-Of-Type
登录后复制
选择元素

兼容性:不支持 IE8
登录后复制
登录后复制
登录后复制
登录后复制

举例说明。
给第一个 p 段落加粗:
p:first-of-type {
font-weight: bold;
}
给最后一个 img 加边框:
img:last-of-type {
border: 10px solid #ccc;
}
给无相连的 blockquote 加样式:

blockquote:only-of-type {
border-left: 5px solid #ccc;
padding-left: 2em;
}
让奇数列的 p 段落先死红色:

p:nth-of-type(even) {
color: red;
}
此外,

:nth-of-type
登录后复制

还可以有其他类型的参数:

/* 偶数个 */
:nth-of-type(even)

/* only 第三个 */
:nth-of-type(3)

/* 每第三个 */
:nth-of-type(3n)

/* 每第四加三个,即 3, 7, 11, ... */
:nth-of-type(4n+3)

calc
登录后复制
做流式布局

兼容性:不支持 IE8
登录后复制
登录后复制
登录后复制
登录后复制

Demo
左中右的流式布局:

nav {
position: fixed;
left: 0;
top: 0;
width: 5rem;
height: 100%;
}
aside {
position: fixed;
right: 0;
top: 0;
width: 20rem;
height: 100%;
}

main {
margin-left: 5rem;
width: calc(100% - 25rem);
}

vw
登录后复制
登录后复制
vh
登录后复制
登录后复制
做全屏滚动效果

兼容性:不支持 IE8
登录后复制
登录后复制
登录后复制
登录后复制


Demo

vw
登录后复制
登录后复制

vh
登录后复制
登录后复制

是相对于 viewport 而言的,所以不会随内容和布局的变化而变。

section {
width: 100vw;
height: 100vh;

display: flex;
align-items: center;
justify-content: center;
text-align: center;

background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}

section:nth-of-type(1) {
background-image: url('https://unsplash.it/1024/683?image=1068');
}
section:nth-of-type(2) {
background-image: url('https://unsplash.it/1024/683?image=1073');
}
section:nth-of-type(3) {
background-image: url('https://unsplash.it/1024/683?image=1047');
}
section:nth-of-type(4) {
background-image: url('https://unsplash.it/1024/683?image=1032');
}

body {
margin: 0;
}
p {
color: #fff;
font-size: 100px;
font-family: monospace;
}

unset
登录后复制
做 CSS Reset

兼容性:不支持 IE
登录后复制


Demo

body {
color: red;
}
button {
color: white;
border: 1px solid #ccc;
}

/* 取消 section 中 button 的 color 设置 */
section button {
color: unset;
}

column
登录后复制
做响应式的列布局

兼容性:不支持 IE9
登录后复制


Demo

nav {
 column-count: 4;
 column-width: 150px;
 column-gap: 3rem;
 column-rule: 1px dashed #ccc;
 column-fill: auto;
}

h2 {
 column-span: all;
}
(完)

以上是有关CSS的高级布局技巧 的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!