国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

css 填坑常用代碼分享

wums / 2754人閱讀

以下是常用的代碼收集,沒有任何技術(shù)含量,只是填坑的積累。

一. css 2.x code

1. 文字換行
/*強(qiáng)制不換行*/
white-space:nowrap;
/*自動(dòng)換行*/
word-wrap: break-word;
word-break: normal;
/*強(qiáng)制英文單詞斷行*/
word-break:break-all;
2. 兩端對(duì)齊
text-align:justify;text-justify:inter-ideogra
3. 去掉Webkit(chrome)瀏覽器中input(文本框)或textarea的黃色焦點(diǎn)框

http://www.cnblogs.com/niao/archive/2012/09/07/2674511.html

input,button,select,textarea{ outline:none;}
textarea{ font-size:13px; resize:none;}

http://www.tuicool.com/articles/EZ777n

去掉chrome記住密碼后自動(dòng)填充表單的黃色背景

4. ie6: position:fixed
.fixed-top /* position fixed Top */{position:fixed;bottom:auto;top:0; }
* html .fixed-top /* IE6 position fixed Top */{position:absolute;bottom:auto;top:expression(eval(document.documentElement.scrollTop));}
*html{background-image:url(about:blank);background-attachment:fixed;}
5. clearfix
.clearfix:after{visibility:hidden;display:block;font-size:0;content:" ";clear:both;height:0;}
.clearfix{display:inline-block;}
html[xmlns] .clearfix{display:block;}
* html .clearfix{height:1%;}

.clearfix{*zoom: 1;}
.clearfix:after{clear:both;display:table;content:"”;}

.clearfix{overflow:hidden;_zoom:1;}

http://www.daqianduan.com/3606.html

6. seperate-table
.tab{border-collapse:separate;border:1px solid #e0e0e0;}
.tab th,.tab td{padding:3px;font-size:12px;background:#f5f9fb;border:1px solid;border-color:#fff #deedf6 #deedf6 #fff;}
.tab th{background:#edf4f0;}
.tab tr.even td{background:#fff;}


111 222
111 222
7. 光標(biāo)大?。?/b>

http://hi.baidu.com/jiuyuefenglin/item/dee35b080366f11cebfe3862

8. min-height: 最小高度兼容代碼
.minheight500{min-height:500px;height:auto !important;height:500px;overflow:visible;}

9. 鼠標(biāo)不允許點(diǎn)擊:
cursor:not-allowed;
10. mac font: osx平臺(tái)字體優(yōu)化
font-family:"Hiragino Sans GB","Hiragino Sans GB W3","微軟雅黑";
11. 省略號(hào):
.ellipsis{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
二. css3 code 1. 漸變:
.a{background:-webkit-gradient(linear,left top,left bottom,from(#69bdf9),to(#4aa7e8));background:-moz-linear-gradient(top,#67bcf8,#3b96d6);background:-o-linear-gradient(top,#67bcf8,#3b96d6);background:linear-gradient(top,#67bcf8,#3b96d6);}
2.投影:
.b{box-shadow:inset 1px -1px 0 #f1f1f1;text-shadow:1px 1px 0px #630;}
filter:progid:DXImageTransform.Microsoft.gradient(enabled="true",startColorstr="#99000000",endColorstr="#99000000");background:rgba(0,0,0,.6);

background:rgba(0,0,0,0.5);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr="#50000000",endColorstr="#50000000")9;

看哪個(gè)startColorstr和endColorstr,一共8位,后6位是RGB的顏色代碼,前兩位是16進(jìn)制的

比如60%透明,就是256x0.6=154,再換算成16進(jìn)制=9A
background-image:-ms-linear-gradient(top, #fff, #ffffd); ie10漸變
http://www.iefans.net/ie10-yulanban-css3-jianbian/

alpha透明兼容代碼生成:

http://leegorous.net/tools/bg-alpha.html

16進(jìn)制的轉(zhuǎn)換

http://www.zhangxinxu.com/wordpress/2010/05/rgba%E9%A2%9C%E8%89%B2%E4%B8%8E%E5%85%BC%E5%AE%B9%E6%80%A7%E7%9A%84%E5%8D%8A%E9%80%8F%E6%98%8E%E8%83%8C%E6%99%AF%E8%89%B2/

透明兼容

3. search占位

http://www.qianduan.net/search-box-style-custom-webkit.html

::-webkit-input-placeholder {}
::-moz-input-placeholder {}
input:focus::-webkit-input-placeholder { color: transparent; }
-webkit-appearance:none;  google邊框去除
input[type="search"]{-webkit-appearance:textfield;} // 去除chrome默認(rèn)樣式
http://i.wanz.im/2011/02/04/remove_border_from_input_type_search/
http://blog.csdn.net/do_it__/article/details/6789699
line-height: normal; /* for non-ie */
line-height: 22px9; /* for ie */

4.

title 換行:
5. 漸變
background: #bde25e; /* Old browsers */
background: -moz-linear-gradient(top, #bde25e 2%, #8bb31d 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(2%,#bde25e), color-stop(100%,#8bb31d)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #bde25e 2%,#8bb31d 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #bde25e 2%,#8bb31d 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #bde25e 2%,#8bb31d 100%); /* IE10+ */
background: linear-gradient(to bottom, #bde25e 2%,#8bb31d 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#bde25e", endColorstr="#8bb31d",GradientType=0 ); /* IE6-9 */

 @media screen and (max-width:1220px) and (min-width:1151px) {
    #wrapper {font-size:15px;}
}

http://www.colorzilla.com/gradient-editor/

有全部瀏覽器的兼容代碼生成

http://segmentfault.com/a/1190000000362621

CSS 實(shí)現(xiàn) textArea 的 placeholder 換行

6.阻止默認(rèn)事件
pointer-events:none; 

7. 變灰 gray:
html{
filter: grayscale(100%);
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);
filter: url("data:image/svg+xml;utf8,#grayscale");
filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
-webkit-filter: grayscale(1);
}
8. firefox 阻止選中:
-moz-user-focus:ignore;-moz-user-input:disabled;-moz-user-select:none;
9. 箭頭
display:block;border:solid transparent;line-height: 0;width:0; height:0;border-top:solid #0288ce;border-width:8px 6px 0 6px;

border-style:solid; border-width:7px; border-color:transparent transparent transparent #ff7020;

ie6 bug測(cè)試,把border-style設(shè)為dashed.

10. 取消textarea右下角可拖動(dòng)手柄:
resize:none
11. 取消chrome form表單的聚焦邊框:
input,button,select,textarea{outline:none}
textarea{resize:none}
12. 取消a鏈接的黃色邊框:
a{-webkit-tap-highlight-color:rgba(0,0,0,0);}
13. 漸變
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ef6464, endColorstr= #eb4141);/*IE<9>*/
-ms-filter: "progid:DXImageTransform.Microsoft.gradient (GradientType=0, startColorstr=#ef6464, endColorstr=#eb4141)";/*IE8+*/
14.chrome字體縮小:
.chrome_adjust { font-size: 9px; -webkit-transform: scale(0.75); }
15. webkit 水平居中:
display:-webkit-box;-webkit-box-pack:center; -webkit-box-align: center;
16. 取消chrome 搜索x提示:
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
display: none;
}
17. autofill:

http://stackoverflow.com/questions/2338102/override-browser-form-filling-and-input-highlighting-with-html-css

input:-webkit-autofill {-webkit-box-shadow: 0 0 0px 1000px white inset;}

input:-webkit-autofill,

textarea:-webkit-autofill,

select:-webkit-autofill {

    -webkit-box-shadow: 0 0 0 1000px white inset;

}
autocomplete="off"
18. 手機(jī)版本網(wǎng)頁(yè)a標(biāo)記虛線框問題
a:focus { outline:none; -moz-outline:none; }
19. 焦點(diǎn)去除背景:
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);

-webkit-tap-highlight-color: transparent;  // i.e. Nexus5/Chrome and Kindle Fire HD 7""
20. placeholder占位符顏色自定義
input:-moz-placeholder { color: #369; }

::-webkit-input-placeholder { color:#369; }

原文來自:http://www.cnblogs.com/jikey/p/4233003.html

文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請(qǐng)注明本文地址:http://specialneedsforspecialkids.com/yun/111007.html

相關(guān)文章

  • webpack4配置之分享幾個(gè)常用插件

    摘要:去做想做的事,去愛值得的人去成為自己喜歡的模樣,去讓自己發(fā)光渾身充滿力量,充實(shí)的日子最美好各位早安,這里是平頭哥聯(lián)盟,我是首席填坑官蘇南,用心分享一起成長(zhǎng)做有溫度的攻城獅。 showImg(https://segmentfault.com/img/bVbjIcs?w=1008&h=298); 前言   繼上一次webpack的基礎(chǔ)配置分享之后,本次將分享一些工作中項(xiàng)目常用的配置插件、也...

    Jackwoo 評(píng)論0 收藏0
  • webpack4配置詳解之逐行分析

    摘要:今天就嘗試著一起來聊聊吧,旨在幫大家加深理解新手更容易上路,都能從到搭建配置自定屬于自己的腳手架,或?qū)σ逊庋b好的腳手架有進(jìn)一步的鞏固,接下來蘇南會(huì)詳細(xì)講解中的每一個(gè)配置字段的作用部分為新增。 showImg(https://segmentfault.com/img/bVbjmMV?w=1008&h=298); 前言   經(jīng)常會(huì)有群友問起webpack、react、redux、甚至cre...

    dkzwm 評(píng)論0 收藏0
  • [填坑手冊(cè)]小程序Canvas生成海報(bào)(一)---完整流程

    摘要:海報(bào)生成示例最近智酷君在做小程序生成海報(bào)的項(xiàng)目中遇到一些棘手的問題,在網(wǎng)上查閱了各種資料,也踩扁了各種坑,智酷君希望把這些填坑經(jīng)驗(yàn)整理一下分享出來,避免后來的兄弟重復(fù)掉坑。 showImg(https://segmentfault.com/img/bVbs5V8?w=343&h=517);海報(bào)生成示例 最近智酷君在做[小程序]canvas生成海報(bào)的項(xiàng)目中遇到一些棘手的問題,在網(wǎng)上查閱了...

    shleyZ 評(píng)論0 收藏0
  • 曾經(jīng)面試踩過的坑,都在這里了~

    摘要:前言前段時(shí)間面試包括阿里巴巴的電話面試,遇到過一些面試題,且面試中出現(xiàn)機(jī)率較高的提問筆試,有些答的不是很好掛掉了,今天終于有時(shí)間整理出來分享給大家,希望對(duì)大家面試有所幫助,都能輕松拿。 showImg(https://segmentfault.com/img/bVbhSwP?w=1008&h=452); 前言   前段時(shí)間面試(包括阿里巴巴的電話面試),遇到過一些面試題,且面試中出現(xiàn)機(jī)...

    sunnyxd 評(píng)論0 收藏0
  • 曾經(jīng)面試踩過的坑,都在這里了~

    摘要:前言前段時(shí)間面試包括阿里巴巴的電話面試,遇到過一些面試題,且面試中出現(xiàn)機(jī)率較高的提問筆試,有些答的不是很好掛掉了,今天終于有時(shí)間整理出來分享給大家,希望對(duì)大家面試有所幫助,都能輕松拿。 showImg(https://segmentfault.com/img/bVbhSwP?w=1008&h=452); 前言   前段時(shí)間面試(包括阿里巴巴的電話面試),遇到過一些面試題,且面試中出現(xiàn)機(jī)...

    luodongseu 評(píng)論0 收藏0

發(fā)表評(píng)論

0條評(píng)論

最新活動(dòng)
閱讀需要支付1元查看
<