版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、 仁人教育Web开发者不容错过的20段CSS代码Web开发技术每年都在革新,浏览器已逐渐支持CSS3特性,并且网站设计师和前端开发者普遍采用这种新技术进行设计与开发。但仍然有一些开发者迷恋着一些CSS2代码。本文将分享20段非常专业的CSS2/CSS3代码供大家使用. Web开发技术每年都在革新,浏览器已逐渐支持CSS3特性,并且网站设计师和前端开发者普遍采用这种新技术进行设计与开发。但仍然有一些开发者迷恋着一些CSS2代码。本文将分享20段非常专业的CSS2/CSS3代码供大家使用,你可以把它们保存在IDE里、或者存储在CSS文档里,这些代码片段
2、绝对会给你带来意外的惊喜。 1. CSS Resets网络上关于CSS重置的代码非常多。本段代码是根据Eric Meyers reset codes进行改编的,里面包含一点响应式图片和所有核心元素的边界框设置,这样就可以保持页边距和填充可以很好地对齐。 1234567891011121314151617181920212223242526html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, addres
3、s, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure
4、, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline;
5、;outline: none; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;html height: 101%; body font-size: 62.5%; line-height: 1; font-family: Arial, Tahoma, sans-serif; articl
6、e, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section display: block; ol, ul list-style: none; blockquote, q quotes: none; blockquote:before, blockquote:after, q:before, q:after content: '' content: none;
7、 strong font-weight: bold; table border-collapse: collapse; border-spacing: 0; img border: 0; max-width: 100%; p font-size: 1.2em; line-height: 1.0em; color: #333; 2.经典的CSS Clearfix这个clearfix代码已在Web
8、开发者之间广泛流传,这段类选择器要应用到持有浮动元素的容器中,确保后面的内容都不会浮动,但会被下推和清除。 12345.clearfix:after content: "." display: block; clear: both; visibility: hidden; line-height: 0; height: 0; .clearfix display: inline-block; <font><
9、;/font> htmlxmlns .clearfix display: block; * html .clearfix height: 1%; 3.升级版的Clearfix在表现上,新版本和经典版本不存在什么差异,这些类可以有效地清除所有floats,但它们只兼容现代浏览器和传统的IE 6-8。1234.clearfix:before, .container:after content: "" display: table; <font><
10、/font> .clearfix:after clear: both; /* IE 6/7 */.clearfix zoom: 1; 4. Cross-Browser Transparency CSS3里的许多属性都与浏览器相兼容,但也有特例,比如opacity,需要对它进行一些更新才可以。附加过滤属性可以兼容任何老版的IE浏览器。123456.transparent filter: alpha(opacity=50);/* internet explor
11、er */ -khtml-opacity: 0.5; /* khtml, old safari */ -moz-opacity: 0.5; /* mozilla, netscape */ opacity: 0.5;
12、60; /* fx, safari, opera */ 5. CSS Blockquote模板这段代码主要用在页面上进行分离引用或复制内容,并且给页面文字提供了默认样式。 123456789101112131415161718blockquote background: #f9f9f9;< border-left: 10px solid #ccc; marg
13、in: 1.5em 10px; padding: .5em 10px; quotes: "201C""201D""2018""2019"blockquote:before color: #ccc; content: open-quote;
14、 font-size: 4em; line-height: .1em; margin-right: .25em; vertical-align: -.4em;blockquote p display: inline; 6. 个性化的圆角代码许多CSS开发者都非常熟悉圆角语法,但如何为每个角设置不同的值?不如看看下面这段代码吧! 12345678910
15、11121314151617#container -webkit-border-radius: 4px 3px 6px 10px; -moz-border-radius: 4px 3px 6px 10px; -o-border-radius: 4px 3px 6px 10px; b
16、order-radius: 4px 3px 6px 10px;/* alternative syntax broken into each line */#container -webkit-border-top-left-radius: 4px; -webkit-border-top-rightright-radius: 3px; -webkit-border-bottom-rightright
17、-radius: 6px; -webkit-border-bottom-left-radius: 10px; -moz-border-radius-topleft: 4px; -moz-border-radius-topright: 3px; -moz-border-radius-bottomright: 6px; -
18、moz-border-radius-bottomleft: 10px; 7. 一般媒体查询这是一段非常好的模板,用于各种零零碎碎的媒体查询,在移动设备上也可以使用,这段代码甚至可以通过使用min-device-pixel-ratio引用到视网膜设备上。 1234567891011121314151617181920212223242526272829303132333435363738/* Smartphones (portrait and landscape) - */media only screenand (min-device-width :
19、160;320px) and (max-device-width : 480px) /* Styles */ /* Smartphones (landscape) - */media only screen and (min-width : 321px) /* Styles */ /* Smartphones (portrait) - */media only screen and (max-width : 320px)
20、/* Styles */* iPads (portrait and landscape) - */media only screen and (min-device-width : 768px) and (max-device-width : 1024px) /* Styles */<font></font> /* iPads (landscape) - */media only screen and (min-device-width : 768px) and (m
21、ax-device-width : 1024px) and (orientation : landscape) /* Styles */* iPads (portrait) - */media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) /* Styles */ /* Desktops and
22、laptops - */media only screen and (min-width : 1224px) /* Styles */* Large screens - */media only screen and (min-width : 1824px) /* Styles */* iPhone 4 - */media only screen and (-webkit-min-device-pixel-ratio:1.5), only screen
23、60;and (min-device-pixel-ratio:1.5) /* Styles */8. 现代字体栈在新网页上设计属于自己的字体栈还是件比较困难的事情,希望下面这段代码能给你带来启发和开发模板,关于更多字体栈源码,你可以访问CSS Font Stacks。 1234567891011121314151617181920212223/* Times New Roman-based serif */font-family: Cambria, "Hoefler Text", Utopia, "Libera
24、tion Serif", "Nimbus Roman No9 L Regular", Times, "Times New Roman", serif; /* A modern Georgia-based serif */font-family: Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif
25、," "Bitstream Vera Serif", "Liberation Serif", Georgia, serif; /*A more traditional Garamond-based serif */font-family: "Palatino Linotype", Palatino, Palladio, "URW Palladio L", "Book Antiqua", Bas
26、kerville, "Bookman Old Style", "Bitstream Charter", "Nimbus Roman No9 L", Garamond, "Apple Garamond", "ITC Garamond Narrow", "New Century Schoolbook", "Century Schoolbook", "Century Sch
27、oolbook L", Georgia, serif; /*The Helvetica/Arial-based sans serif */font-family: Frutiger, "Frutiger Linotype", Univers, Calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, "DejaVu Sans Condense
28、d", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif; /*The Verdana-based sans serif */font-family: Corbel, "Lucida Grande", "Lucida Sans
29、Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif; /*The Trebuchet-based sans serif */font-family: "Segoe UI",
30、Candara, "Bitstream Vera Sans", "DejaVu Sans", "Bitstream Vera Sans", "Trebuchet MS", Verdana, "Verdana Ref", sans-serif; /*The heavier “Impact” sans serif */font-family: Impact, Haettenschweiler,
31、160;"Franklin Gothic Bold", Charcoal, "Helvetica Inserat", "Bitstream Vera Sans Bold", "Arial Black", sans-serif; /*The monospace */font-family: Consolas, "Andale Mono WT", "Andale Mono",
32、"Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", Monaco, "Courier New", Courier, monospace; 9. 自定义文本
33、选择一些新的Web浏览器允许你在网页上自定义一些突出显示的颜色,下面代码的默认颜色是浅蓝色,当然,你可以依据个人爱好进行各种颜色设置。下面代码引用了典型的Webkit和Mozilla供应商前缀:selection 。 123:selection background: #e2eae2; :-moz-selection background: #e2eae2; :-webkit-selection background: #e2eae2; 10.隐藏Logo上的H1文本 1234567h
34、1 text-indent: -9999px; margin: 0 auto; width: 320px; height: 85px; background: transparent url("images/logo.png") no-repea
35、t scroll; 11. 为图片创建拍立得效果边框运用下面代码可以在图片上实现拍立得相片效果一大片白色边框和细微的阴影。你需要修改图片的宽度/高度值来与你的网站布局相匹配。 12345678910img.polaroid background:#000;/*Change this to a background image or remove*/ border:solid #fff; border-width:6p
36、x 6px 20px 6px; box-shadow:1px 1px 5px #333;/* Standard blur at 5px. Increase for more depth * -webkit-box-shadow:1px 1px 5px #333; -moz-box-shadow:1px 1px 5px #333; height:200px
37、; /*Set to height of your image or desired div*/ width:200px;/*Set to width of your image or desired div*/12. 锚链接伪类选择器1234a:link color: blue; a:visited color: purple; a:hover color: red; a:active color: yellow; 13. 花俏地CSS3 Pull-Quot
38、esPull-quotes不同于页面里的blockquote,它们通常用在文章中来引用文本。 123456789101112131415161718192021222324252627282930313233.has-pullquote:before /* Reset metrics. */ padding: 0; border: none; /* Content */
39、 content: attr(data-pullquote); /* Pull out to the right, modular scale based margins. */ float: rightright; width: 320px; margin: 12px -140px 24px 36px;
40、160; /* Baseline correction */ position: relative; top: 5px; /* Typography (30px line-height equals 25% incremental leading) */ font-size: 23px; line-hei
41、ght: 30px;.pullquote-adelle:before font-family: "adelle-1", "adelle-2" font-weight: 100; top: 10px !important; .pullquote-helvetica:before font-family:
42、 "Helvetica Neue", Arial, sans-serif; font-weight: bold; top: 7px !important;.pullquote-facit:before font-family: "facitweb-1", "facitweb-2", Helvetica,
43、60;Arial, sans-serif; font-weight: bold; top: 7px !important;14. CSS3的全屏背景效果如果你想使用大图片作为网站背景,并希望在页面滚动时保持固定,该代码片段非常适合,不过这段代码无法在旧的浏览器上工作。1234567html background: url('images/bg.jpg') no-repeat
44、0;center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; 15. 内容垂直集中相对于内容在水平位置,内容在垂直方向是不好把控的,尤其当考虑到滚动条这些因素时。这段
45、纯CSS代码可以很好的工作。 12345.container min-height: 6.5em; display: table-cell; vertical-align: middle; 16. 垂直滚动条这段代码将确保你的HTML元素总是稍微高于浏览器滚动条所停留的位置。 1html height: 101% 17. CSS3
46、 Gradients模板 123456789#colorbox background: #629721; background-image: -webkit-gradient(linear, left top, left bottombottom, from(#83b842), to(#629721); background-image: -webkit-linear-gradient(top,&
47、#160;#83b842, #629721); background-image: -moz-linear-gradient(top, #83b842, #629721); background-image: -ms-linear-gradient(top, #83b842, #629721); background-image: -o-linear-gradient(top, #83b842,
48、160;#629721); background-image: linear-gradient(top, #83b842, #629721);18. Font-Face模板使用font-face可以把TTF/OTF/SVG/WOFF文件嵌入到网站,并生成自定义font families。 1234567891011font-face font-family: 'MyWebFont' src:
49、;url('webfont.eot');/* IE9 Compat Modes */ src: url('webfont.eot?#iefix') format('embedded-opentype'),/* IE6-IE8 */ url('webfont.woff') format('woff'),/* Modern Browsers */ url
50、('webfont.ttf') format('truetype'),/* Safari, Android, iOS */ url('webfont.svg#svgFontName') format('svg');/* Legacy iOS */body font-family: 'MyWebFont', Arial, sans-serif; 19.创建缝合效果 123456789101112131415161718192021222324252627282930313233
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2.1数控车床系统面板操作
- 2026松江公交面试题及答案
- 2026唐山市妇联面试题及答案
- 2026头条网友面试题目及答案
- 《趣味学社区调查|让课堂告别枯燥 爱上学习》
- 儿童急性呼吸道感染诊疗共识2026
- 大数据通信技术应用与发展趋势分析报告
- 汇票中介合同范本
- 就2026年7月软件升级实施时间商定的回复函(8篇)
- 2026年武汉市江汉区社区工作者招聘考试模拟试题及答案详解
- (高清版)JTG 3810-2017 公路工程建设项目造价文件管理导则
- 人教版四年级数学下册期末试卷-
- 《民宿文化与运营》课件-第四章 民宿建设
- JC-T 2536-2019水泥-水玻璃灌浆材料
- 矿井瓦斯灾害防治
- 2024届新疆第二师华山中学高二化学第二学期期末质量检测试题含解析
- 英语48个国际音标课件(单词带声、附有声国际音标图)
- 北京中医药大学《701中药综合1》(含中药学、分析化学、中药化学)历年考研真题汇编
- GB/T 19831.3-2023石油天然气工业套管扶正器第3部分:刚性和半刚性扶正器
- 腹腔镜右半结肠切除术
- YS/T 95.1-2015空调器散热片用铝箔第1部分:基材
评论
0/150
提交评论