-
Notifications
You must be signed in to change notification settings - Fork 324
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CSS 高级布局技巧 #14
Labels
Comments
学习了! |
不知不觉, IE8 也逐渐退出舞台了,感觉IE6还是昨天 |
mark |
用 all + unset 做 CSS Reset
section button {
all: unset;
} |
已收,可惜calc、vw、vh等一些属性需要安卓4.4以上,还是没能用上 |
如今是等待安卓低版本系统淘汰-_-~ |
非常棒的分享,提示一下有错别字哦,(让奇数列的 p 段落先死红色)显示。。。 |
@Demy-ouyang 感谢提醒,已修正。 |
egghead 的 Learn Advanced CSS Layout Techniques? |
get~ 学习了 |
mark |
calc 应该慎用,特别是在一些列表里。性能很差的。 |
很多属性移动端支持的都不好呀 |
让无内容的 a 标签显示其 hrefa:empty::after {
content: attr(href);
} |
mark |
vw 和 vh 在 IE9-10 下行为与现代浏览器不同,要注意 |
mark! |
mark |
请问 vw/vh ->rem 有比较好的转换方案么? |
mark |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
随着 IE8 逐渐退出舞台,很多高级的 CSS 特性都已被浏览器原生支持,再不学下就要过时了。
用
:empty
区分空元素Demo
假如我们有以上列表:
我们希望可以对空元素和非空元素区别处理,那么有两种方案。
用
:empty
选择空元素:或者用
:not(:empty)
选择非空元素:用
:*-Of-Type
选择元素举例说明。
给第一个 p 段落加粗:
给最后一个 img 加边框:
给无相连的 blockquote 加样式:
让奇数列的 p 段落显示红色:
此外,
:nth-of-type
还可以有其他类型的参数:用
calc
做流式布局Demo
左中右的流式布局:
用
vw
和vh
做全屏滚动效果Demo
vw
和vh
是相对于 viewport 而言的,所以不会随内容和布局的变化而变。用
unset
做 CSS ResetDemo
用
column
做响应式的列布局Demo
(完)
The text was updated successfully, but these errors were encountered: