css十个经典案例.pdf
《css十个经典案例.pdf》由会员分享,可在线阅读,更多相关《css十个经典案例.pdf(10页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、The top 10 most useful css snippets of today.I have noticed myself to use a few different code snippets on a daily basis so I thought some of you might find them useful.So here we go.1.Centering a website(or other elements)The HTML view plaincopy to clipboardprint?1.2.3.4.The CSS view plaincopy to c
2、lipboardprint?1.wrap width:960px;margin:0 auto;This is an oldie,but apperantly it is not as obvious as you would think.2.Sticky Footer(make footer always be on bottom without absolute positioning)The HTML view plaincopy to clipboardprint?1.2.3.4.5.6.The CSS view plaincopy to clipboardprint?1.*margin
3、:0;padding:0;2.html,body,#wrap height:100%;3.body#wrap height:auto;min-height:100%;4.#main padding-bottom:150px;/*must be same height as the footer*/5.#footer 6.position:relative;7.margin-top:-150px;/*negative value of footer height*/8.height:150px;9.clear:both;10./*CLEAR FIX*/11.clearfix:after cont
4、ent:.;12.display:block;13.height:0;14.clear:both;15.visibility:hidden;16.clearfix display:inline-block;17./*Hides from IE-mac*/18.*html.clearfix height:1%;19.clearfix display:block;20./*End hide from IE-mac*/As of recently i have had to use this over 50 times i think this is one of the most importan
5、t tricks you will learn today.3.Cross-Browser Min HeightThe CSS view plaincopy to clipboardprint?1.element min-height:600px;height:auto !important;height:600px;You can replace the min-height and heigth with 12em or another value that works for you.4.Box Shadow(CSS3)The CSS view plaincopy to clipboar
6、dprint?1.box box-shadow:5px5px5px#666;-moz-box-shadow:5px5px 5px#666;-webkit-box-shadow:5px 5px5px#666;As you can see since this is a CSS3 property you will need all the three commands to make it cross browser(except for ie of course).The first 2 measurements are for horizontal offset and the vertic
7、al offset.The third number is for the blur radius.And the last is the color of the shadow.5.Text Shadow(CSS3)with IE hackThe CSS view plaincopy to clipboardprint?1.text text-shadow:1px1px1px#666;filter:Shadow(Color=#666666,Direction=135,Strength=5);This technique is great for all modern browsers,the
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- css 十个 经典 案例
限制150内