




版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、Web开发者不容错过的20段CSS代码发表于2013-05-24 17:50| 30941次阅读| 来源CSDN| 184 条评论| 作者张红月CSSHTML前端开发摘要:共享已成为互联网的一种主流,尤其是分享一些非常实用的技术,本文收集了20段非常专业的CSS 2/CSS 3代码片段给大家,你可以把它们保存在IDE里、或者存储在CSS文档里,这些代码片段绝对会给你带来意外的惊喜。Web开发技术每年都在革新,浏览器已逐渐支持CSS3特性,并且网站设计师和前端开发者普遍采用这种新技术进行设计与开发。但仍然有一些开发者迷恋着一些CSS2代码。本文将分享20段非常专业的
2、CSS2/CSS3代码供大家使用,你可以把它们保存在IDE里、或者存储在CSS文档里,这些代码片段绝对会给你带来意外的惊喜。1. CSS Resets网络上关于CSS重置的代码非常多。本段代码是根据Eric Meyers reset codes进行改编的,里面包含一点响应式图片和所有核心元素的边界框设置,这样就可以保持页边距和填充可以很好地对齐。css view plaincopy1. html, body, div, span, applet, object, iframe, h1, h2,
3、h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt,
4、60;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, emb
5、ed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video 2. margin: 0; 3. padding: 0; 4.
6、0; border: 0; 5. font-size: 100%; 6. font: inherit; 7. vertical-align: baseline; 8. outline: none; 9. -webkit-box-sizing: border-box; 10. &
7、#160; -moz-box-sizing: border-box; 11. box-sizing: border-box; 12. 13. html height: 101%; 14. body font-size: 62.5%; line-height: 1; font-family: Arial, Tahoma,
8、;sans-serif; 15. 16. article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section display: block; 17. ol, ul list-style: none;
9、160;18. 19. blockquote, q quotes: none; 20. blockquote:before, blockquote:after, q:before, q:after content: '' content: none; 21. strong font-weight: bold; &
10、#160; 22. 23. table border-collapse: collapse; border-spacing: 0; 24. img border: 0; max-width: 100%; 25. 26. p font-size: 1.2em; line-height: 1.0em; colo
11、r: #333; 2.经典的CSS Clearfix这个clearfix代码已在Web开发者之间广泛流传,这段类选择器要应用到持有浮动元素的容器中,确保后面的内容都不会浮动,但会被下推和清除。css view plaincopy1. .clearfix:after content: "." display: block; clear: both; visibility: hidden; line-height:
12、;0; height: 0; 2. .clearfix display: inline-block; 3. <font></font> 4. htmlxmlns .clearfix display: block; 5. * html .clearfix height:
13、1%; 3.升级版的Clearfix在表现上,新版本和经典版本不存在什么差异,这些类可以有效地清除所有floats,但它们只兼容现代浏览器和传统的IE 6-8。css view plaincopy1. .clearfix:before, .container:after content: "" display: table; <font></font> 2. .cle
14、arfix:after clear: both; 3. /* IE 6/7 */ 4. .clearfix zoom: 1; 4. Cross-Browser Transparency CSS3里的许多属性都与浏览器相兼容,但也有特例,比如opacity,需要对它进行一些更新才可以。附加过滤属性可以兼容任何老版的IE浏览器。css view plaincopy1. .t
15、ransparent 2. filter: alpha(opacity=50); /* internet explorer */ 3. -khtml-opacity: 0.5; /* khtml, old safari */ 4.
16、 -moz-opacity: 0.5; /* mozilla, netscape */ 5. opacity: 0.5; /* fx, safari, opera */ 6.
17、0; 源码地址: 5. CSS Blockquote模板这段代码主要用在页面上进行分离引用或复制内容,并且给页面文字提供了默认样式。 css view plaincopy1. blockquote 2. background: #f9f9f9;< 3. border-left: 10px solid #ccc; &
18、#160;4. margin: 1.5em 10px; 5. padding: .5em 10px; 6. quotes: "201C""201D""2018""2019" 7. 8. blockquote:before
19、160; 9. color: #ccc; 10. content: open-quote; 11. font-size: 4em; 12. line-height: .1em; 13. margin
20、-right: .25em; 14. vertical-align: -.4em; 15. 16. blockquote p 17. display: inline; 18. 查看源码: http:/css-6. 个性化的圆角代码许多CSS开发者都非常熟悉圆
21、角语法,但如何为每个角设置不同的值?不如看看下面这段代码吧!css view plaincopy1. #container 2. -webkit-border-radius: 4px 3px 6px 10px; 3. -moz-border-radius: 4px 3px 6px 10px; 4.
22、 -o-border-radius: 4px 3px 6px 10px; 5. border-radius: 4px 3px 6px 10px; 6. 7. /* alternative syntax broken into each line */ 8. #container
23、 9. -webkit-border-top-left-radius: 4px; 10. -webkit-border-top-rightright-radius: 3px; 11. -webkit-border-bottom-rightright-radius: 6px; 12.
24、60;-webkit-border-bottom-left-radius: 10px; 13. -moz-border-radius-topleft: 4px; 14. -moz-border-radius-topright: 3px; 15. -moz-border-radius-bottomright: 6px; 16.
25、 -moz-border-radius-bottomleft: 10px; 17. 7. 一般媒体查询这是一段非常好的模板,用于各种零零碎碎的媒体查询,在移动设备上也可以使用,这段代码甚至可以通过使用min-device-pixel-ratio引用到视网膜设备上。css view plaincopy1. /* Smartphones (portrait and landscape) - */
26、; 2. media only screen 3. and (min-device-width : 320px) and (max-device-width : 480px) 4. /* Styles */ 5. 6. /* Smartphones
27、(landscape) - */ 7. media only screen and (min-width : 321px) 8. /* Styles */ 9. 10. /* Smartphones (portrait) - */ 11. media only scr
28、een and (max-width : 320px) 12. /* Styles */ 13. 14. /* iPads (portrait and landscape) - */ 15. media only screen and (min-device-width
29、0;: 768px) and (max-device-width : 1024px) 16. /* Styles */ 17. 18. <font></font> 19. /* iPads (landscape) - */ 20. media on
30、ly screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) 21. /* Styles */ 22. 23. /* iPads (portrait) -
31、60;*/ 24. media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) 25. /* Styles */ 26.
32、0; 27. /* Desktops and laptops - */ 28. media only screen and (min-width : 1224px) 29. /* Styles */ 30. 31. /* Large screens - */ 32. me
33、dia only screen and (min-width : 1824px) 33. /* Styles */ 34. 35. /* iPhone 4 - */ 36. media only screen and (-webkit-min-device-pixel-ratio:1.5),
34、;only screen and (min-device-pixel-ratio:1.5) 37. /* Styles */ 38. 源码地址: http:/css-8. 现代字体栈在新网页上设计属于自己的字体栈还是件比较困难的事情,希望下面这段代码能给你带来启发和开发模板,关于更多字体栈源码,你可以访问CSS Font Stacks。css view plaincopy1. /* Tim
35、es New Roman-based serif */ 2. font-family: Cambria, "Hoefler Text", Utopia, "Liberation Serif", "Nimbus Roman No9 L Regular", Times, "Times New Ro
36、man", serif; 3. 4. /* A modern Georgia-based serif */ 5. font-family: Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida,
37、0;"DejaVu Serif," "Bitstream Vera Serif", "Liberation Serif", Georgia, serif; 6. 7. /*A more traditional Garamond-based serif */ 8. fon
38、t-family: "Palatino Linotype", Palatino, Palladio, "URW Palladio L", "Book Antiqua", Baskerville, "Bookman Old Style", "Bitstream Charter", "Nimbus Roman N
39、o9 L", Garamond, "Apple Garamond", "ITC Garamond Narrow", "New Century Schoolbook", "Century Schoolbook", "Century Schoolbook L", Georgia, serif;
40、60; 9. 10. /*The Helvetica/Arial-based sans serif */ 11. font-family: Frutiger, "Frutiger Linotype", Univers, Calibri, "Gill Sans", "Gill Sans MT",&
41、#160;"Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
42、160; 12. 13. /*The Verdana-based sans serif */ 14. font-family: Corbel, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans&quo
43、t;, "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif; 15. 16. /*The Trebuchet-based sans serif */ 17. font-
44、family: "Segoe UI", Candara, "Bitstream Vera Sans", "DejaVu Sans", "Bitstream Vera Sans", "Trebuchet MS", Verdana, "Verdana Ref", sans-serif;
45、160; 18. 19. /*The heavier “Impact” sans serif */ 20. font-family: Impact, Haettenschweiler, "Franklin Gothic Bold", Charcoal, "Helvetica Inserat", "Bits
46、tream Vera Sans Bold", "Arial Black", sans-serif; 21. 22. /*The monospace */ 23. font-family: Consolas, "Andale Mono WT", "Andale
47、Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", Monaco,
48、60;"Courier New", Courier, monospace; 源码地址: 9. 自定义文本选择一些新的Web浏览器允许你在网页上自定义一些突出显示的颜色,下面代码的默认颜色是浅蓝色,当然,你可以依据个人爱好进行各种颜色设置。下面代码引用了典型的Webkit和Mozilla供应商前缀:selection 。css view plaincopy1. :selection background: #e2eae2;
49、160;2. :-moz-selection background: #e2eae2; 3. :-webkit-selection background: #e2eae2; 10.隐藏Logo上的H1文本css view plaincopy1. h1 2. text-indent: -9999px;
50、60;3. margin: 0 auto; 4. width: 320px; 5. height: 85px; 6. background: transparent url("images/logo.png") no-repeat scrol
51、l; 7. 11. 为图片创建拍立得效果边框运用下面代码可以在图片上实现拍立得相片效果一大片白色边框和细微的阴影。你需要修改图片的宽度/高度值来与你的网站布局相匹配。css view plaincopy1. img.polaroid 2. background:#000; /*Change this to a background image
52、;or remove*/ 3. border:solid #fff; 4. border-width:6px 6px 20px 6px; 5. box-shadow:1px 1px 5px #333; /* Standard blur at 5px
53、. Increase for more depth * 6. -webkit-box-shadow:1px 1px 5px #333; 7. -moz-box-shadow:1px 1px 5px #333; 8. height:200px; /*Set to
54、height of your image or desired div*/ 9. width:200px; /*Set to width of your image or desired div*/ 10. 源码地址: 12. 锚链接伪类选择器css view plaincop
55、y1. a:link color: blue; 2. a:visited color: purple; 3. a:hover color: red; 4. a:active color: yellow; 源码地址: 13. 花俏地CSS3 Pull-QuotesPull-quo
56、tes不同于页面里的blockquote,它们通常用在文章中来引用文本。css view plaincopy1. .has-pullquote:before 2. /* Reset metrics. */ 3. padding: 0; 4. border: none; &
57、#160;5. /* Content */ 6. content: attr(data-pullquote); 7. /* Pull out to the right, modular scale based margins. */ 8
58、. float: rightright; 9. width: 320px; 10. margin: 12px -140px 24px 36px; 11. /* Baseline correction */ 12.
59、160; position: relative; 13. top: 5px; 14. /* Typography (30px line-height equals 25% incremental leading) */ 15. font-siz
60、e: 23px; 16. line-height: 30px; 17. 18. .pullquote-adelle:before 19. font-family: "adelle-1", "adelle-2" 20. font-
61、weight: 100; 21. top: 10px !important; 22. 23. 24. .pullquote-helvetica:before 25. font-family: "Helvetica Neue", Arial, sans-serif;
62、 26. font-weight: bold; 27. top: 7px !important; 28. 29. .pullquote-facit:before 30. font-family: "facitweb-1", "facitweb-2&qu
63、ot;, Helvetica, Arial, sans-serif; 31. font-weight: bold; 32. top: 7px !important; 33. 源码地址: 14. CSS3的全屏背景效果如果你想使用大图片作为网站背景,并希望在页面滚动时保持固定,该代码片段非常适合,不过这段代码无法在旧的浏
64、览器上工作。css view plaincopy1. html 2. background: url('images/bg.jpg') no-repeat center center fixed; 3. -webkit-background-size: cover; 4.
65、60; -moz-background-size: cover; 5. -o-background-size: cover; 6. background-size: cover; 7. 源码: http:/css-15. 内容垂直集中相对于内容在水平位置,内容在垂直方向是不好把控的,尤其当考虑到滚动条这些因素时。这段纯CSS代
66、码可以很好的工作。css view plaincopy1. .container 2. min-height: 6.5em; 3. display: table-cell; 4. vertical-align: middle; 5. 源码地址:
67、/Style/Examples/007/center16. 垂直滚动条这段代码将确保你的HTML元素总是稍微高于浏览器滚动条所停留的位置。 css view plaincopy1. html height: 101% 17. CSS3 Gradients模板css view plaincopy1. #colorbox 2. background: #62
68、9721; 3. background-image: -webkit-gradient(linear, left top, left bottombottom, from(#83b842), to(#629721); 4. background-image: -webkit-linear-gradient(top, #83b842, #629721);
69、60; 5. background-image: -moz-linear-gradient(top, #83b842, #629721); 6. background-image: -ms-linear-gradient(top, #83b842, #629721); 7. background-image: -o-l
70、inear-gradient(top, #83b842, #629721); 8. background-image: linear-gradient(top, #83b842, #629721); 9. 18. Font-Face模板使用font-face可以把TTF/OTF/SVG/WOFF文件嵌入到网站,并生成自定义font families。css view plaincopy1. fon
71、t-face 2. font-family: 'MyWebFont' 3. src: url('webfont.eot'); /* IE9 Compat Modes */ 4. src: url('webfont.eot?#iefix
72、') format('embedded-opentype'), /* IE6-IE8 */ 5. url('webfont.woff') format('woff'), /* Modern Browsers */ 6. url('webfont.ttf') format(
73、39;truetype'), /* Safari, Android, iOS */ 7. url('webfont.svg#svgFontName') format('svg'); /* Legacy iOS */ 8. 9. body 10. font-family: 'MyWebFont', Arial, sans-serif; 11.
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 烟台汽车工程职业学院《水处理原理与技术》2023-2024学年第二学期期末试卷
- 天津轻工职业技术学院《小学语文教学与研究理论教学》2023-2024学年第二学期期末试卷
- 山西财经大学华商学院《游戏引擎应用》2023-2024学年第二学期期末试卷
- 玉溪农业职业技术学院《建筑工程CAD》2023-2024学年第二学期期末试卷
- 镇江市高等专科学校《通信工程设计实施与网络规划优化实践》2023-2024学年第二学期期末试卷
- 新疆维吾尔医学专科学校《水运工程经济》2023-2024学年第二学期期末试卷
- 辽宁轻工职业学院《沉积盆地分析》2023-2024学年第二学期期末试卷
- 浙江长征职业技术学院《比较教育学》2023-2024学年第二学期期末试卷
- 广东药科大学《交通运输信息技术》2023-2024学年第二学期期末试卷
- 德宏师范高等专科学校《纪录片创作后期剪辑》2023-2024学年第二学期期末试卷
- 附件6工贸高风险企业高危领域较大以上安全风险管控清单
- 国际贸易公司后勤管理岗位职责
- 中国矿业大学专职辅导员招聘真题2024
- 骨科手术切口感染的预防与控制
- 2025年角膜接触镜考试题及答案
- 透析营养不良相关知识
- 西部计划面试试题及答案
- 2025 ACC-AHA急性冠脉综合征患者管理指南解读课件
- 江苏开放大学2025年春大学英语B【2】
- 绿化工程施工专项施工方案
- 1.2区域整体性和关联性-以青田县稻鱼共生为例课件-高中地理人教版(2019)选择性必修2
评论
0/150
提交评论