css 199

#CSS
正则参考

// 正则做参考,拷贝使用,注意正则前后加转义符 var regexEnum = { intege:"^-?[1-9]\d*$", //整数 intege1:"^[1-9]\d*$…

2015-12-14 531

#CSS
只对IE9+的有效CSShack

只对IE9+的有效CSShack /*only for IE9+ .class是你要设置的class名称*/ :root .class {}

2015-12-14 313

#CSS
纯CSS实现的图片切换效果

<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>…

2015-12-14 261

#CSS
右侧导航列表带弹出菜单

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>…

2015-12-14 968

#CSS
纯CSS制作可爱的小狐狸日夜照

<div class="the-container"> <input type="checkbox" id="toggle" /> <label fo…

2015-12-14 981

#CSS
body背景图片的拉伸效果

<div id="backgroundImage"> <img src="img/bodybg.jpg" /> </div> <div i…

2015-12-14 228

#CSS
教你 秒会LESS啊

<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=u…

2015-12-14 141

#CSS
左侧固定大小,右侧铺满的最不靠谱的做法

<html> <head> <title>简易小说</title> <link rel="stylesheet" type="…

2015-12-14 881

#CSS
扁平化的bootstrap

.well, .navbar-inner, .popover, .btn, .tooltip, input, select, textarea, pre, .progress, .…

2015-12-14 363

#CSS
css3实现自动旋转动画效果

<!-- HTML5基本文档结构 //--> <!DOCTYPE html> <html> <head> <meta char…

2015-12-14 663

#CSS
简单的代码条用

html,body{ font-size:12px; font-family:"寰蒋闆呴粦";} .topbar{height: 40px; background: #2d363…

2015-12-14 149

#CSS
定义变量

/* 变量定义 */ :root { --main-color: #06c; } /* 变量使用 */ #foo h1 { color: var(--main-color); }

2015-12-14 546
1 10 11 12 13 14 17