版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報或認(rèn)領(lǐng)
文檔簡介
1、 仁人教育Web開發(fā)者不容錯過的20段CSS代碼Web開發(fā)技術(shù)每年都在革新,瀏覽器已逐漸支持CSS3特性,并且網(wǎng)站設(shè)計師和前端開發(fā)者普遍采用這種新技術(shù)進(jìn)行設(shè)計與開發(fā)。但仍然有一些開發(fā)者迷戀著一些CSS2代碼。本文將分享20段非常專業(yè)的CSS2/CSS3代碼供大家使用. Web開發(fā)技術(shù)每年都在革新,瀏覽器已逐漸支持CSS3特性,并且網(wǎng)站設(shè)計師和前端開發(fā)者普遍采用這種新技術(shù)進(jìn)行設(shè)計與開發(fā)。但仍然有一些開發(fā)者迷戀著一些CSS2代碼。本文將分享20段非常專業(yè)的CSS2/CSS3代碼供大家使用,你可以把它們保存在IDE里、或者存儲在CSS文檔里,這些代碼片段
2、絕對會給你帶來意外的驚喜。 1. CSS Resets網(wǎng)絡(luò)上關(guān)于CSS重置的代碼非常多。本段代碼是根據(jù)Eric Meyers reset codes進(jìn)行改編的,里面包含一點響應(yīng)式圖片和所有核心元素的邊界框設(shè)置,這樣就可以保持頁邊距和填充可以很好地對齊。 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.經(jīng)典的CSS Clearfix這個clearfix代碼已在Web
8、開發(fā)者之間廣泛流傳,這段類選擇器要應(yīng)用到持有浮動元素的容器中,確保后面的內(nèi)容都不會浮動,但會被下推和清除。 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在表現(xiàn)上,新版本和經(jīng)典版本不存在什么差異,這些類可以有效地清除所有floats,但它們只兼容現(xiàn)代瀏覽器和傳統(tǒng)的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,需要對它進(jìn)行一些更新才可以。附加過濾屬性可以兼容任何老版的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模板這段代碼主要用在頁面上進(jìn)行分離引用或復(fù)制內(nèi)容,并且給頁面文字提供了默認(rèn)樣式。 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開發(fā)者都非常熟悉圓角語法,但如何為每個角設(shè)置不同的值?不如看看下面這段代碼吧! 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. 一般媒體查詢這是一段非常好的模板,用于各種零零碎碎的媒體查詢,在移動設(shè)備上也可以使用,這段代碼甚至可以通過使用min-device-pixel-ratio引用到視網(wǎng)膜設(shè)備上。 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. 現(xiàn)代字體棧在新網(wǎng)頁上設(shè)計屬于自己的字體棧還是件比較困難的事情,希望下面這段代碼能給你帶來啟發(fā)和開發(fā)模板,關(guān)于更多字體棧源碼,你可以訪問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瀏覽器允許你在網(wǎng)頁上自定義一些突出顯示的顏色,下面代碼的默認(rèn)顏色是淺藍(lán)色,當(dāng)然,你可以依據(jù)個人愛好進(jìn)行各種顏色設(shè)置。下面代碼引用了典型的Webkit和Mozilla供應(yīng)商前綴: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. 為圖片創(chuàng)建拍立得效果邊框運用下面代碼可以在圖片上實現(xiàn)拍立得相片效果一大片白色邊框和細(xì)微的陰影。你需要修改圖片的寬度/高度值來與你的網(wǎng)站布局相匹配。 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的全屏背景效果如果你想使用大圖片作為網(wǎng)站背景,并希望在頁面滾動時保持固定,該代碼片段非常適合,不過這段代碼無法在舊的瀏覽器上工作。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. 內(nèi)容垂直集中相對于內(nèi)容在水平位置,內(nèi)容在垂直方向是不好把控的,尤其當(dāng)考慮到滾動條這些因素時。這段
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文件嵌入到網(wǎng)站,并生成自定義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.創(chuàng)建縫合效果 123456789101112131415161718192021222324252627282930313233
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 專業(yè)服務(wù)協(xié)議續(xù)簽文檔:保障雙方權(quán)益(2024版)版
- 2024年05月上海中國銀聯(lián)“銀星”實習(xí)生招考筆試歷年參考題庫附帶答案詳解
- 2025年度軍事工程專用鋼管扣件運輸安全保密協(xié)議3篇
- 2025年度合同封面定制與法律風(fēng)險防控策略合同3篇
- 專項補充貸款協(xié)議規(guī)范示例2024一
- 2025年度產(chǎn)品陳列與品牌形象提升協(xié)議書3篇
- 2025年廠房建筑合同范本:廠房建筑與環(huán)保驗收合同規(guī)范4篇
- 2025年產(chǎn)業(yè)園區(qū)場地租賃與產(chǎn)業(yè)金融服務(wù)合同4篇
- 醫(yī)療安全知識培訓(xùn)
- 2025年度虛擬現(xiàn)實產(chǎn)品設(shè)計保密合同(全新版)4篇
- 部編新改版語文一年級下冊《語文園地四》教學(xué)設(shè)計
- 2025年北京鐵路局集團(tuán)招聘筆試參考題庫含答案解析
- 《藥品招商營銷概論》課件
- 曙光磁盤陣列DS800-G10售前培訓(xùn)資料V1.0
- 寺廟祈?;顒臃桨?共6篇)
- 2025年病案編碼員資格證試題庫(含答案)
- 企業(yè)財務(wù)三年戰(zhàn)略規(guī)劃
- 提高膿毒性休克患者1h集束化措施落實率
- 山東省濟(jì)南市天橋區(qū)2024-2025學(xué)年八年級數(shù)學(xué)上學(xué)期期中考試試題
- 主播mcn合同模板
- 2024測繪個人年終工作總結(jié)
評論
0/150
提交評論