css 199

#CSS
CSS跨浏览器透明度

selector { filter: alpha(opacity=50); /* internet explorer */ -khtml-opacity: 0.5; /* khtm…

2015-12-14 995

#CSS
纯CSS3做的的3D旋转方块

<!DOCTYPE html> <html lang="zh-cn"> <head> <meta charset="utf-8" />…

2015-12-14 823

#CSS
非响应css初始化

@charset "gb2312"; * { margin: 0; padding: 0; outline: none; } a { color:#333; text-decora…

2015-12-14 626

#CSS
两列布局,左侧定宽,右侧自适应

<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content…

2015-12-14 527

#CSS
纯CSS3的图书翻页动画

$count: 50; @for $idx from 1 through $count { @keyframes #{'anime-' + $idx} { 0% { transfo…

2015-12-14 273

#CSS
CSS选择器给子节点指定一个范围

<!DOCTYPE html> <html> <head> <style> /* How to select a range of …

2015-12-14 133
1 9 10 11 12 13 17