css 填坑常用代碼分享

来源:http://www.cnblogs.com/xiaoxiaojia/archive/2016/04/20/5411306.html
-Advertisement-
Play Games

一. css 2.x code 1. 文字換行 1./*強制不換行*/ 2.white-space:nowrap; 3./*自動換行*/ 4.word-wrap: break-word; 5.word-break: normal; 6./*強制英文單詞斷行*/ 7.word-break:break- ...


 

一. css 2.x code

1. 文字換行 

1./*強制不換行*/ 2.white-space:nowrap; 3./*自動換行*/ 4.word-wrap: break-word; 5.word-break: normal; 6./*強制英文單詞斷行*/ 7.word-break:break-all;

2. 兩端對齊

text-align:justify;text-justify:inter-ideogra

 

3. 去掉Webkit(chrome)瀏覽器中input(文本框)或textarea的黃色焦點框

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記住密碼後自動填充表單的黃色背景 

 

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

01..clearfix:after{visibility:hidden;display:block;font-size:0;content:" ";clear:both;height:0;} 02..clearfix{display:inline-block;} 03.html[xmlns] .clearfix{display:block;} 04.* html .clearfix{height:1%;} 05.  06..clearfix{*zoom: 1;} 07..clearfix:after{clear:both;display:table;content:"”;} 08.  09..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;}
01.<table class="tab" width="100%" cellpadding="0" cellspacing="0" border="0"> 02.<tr> 03.<th>111</th> 04.<td>222</td> 05.</tr> 06.<tr> 07.<th>111</th> 08.<td>222</td> 09.</tr> 10.</table>

7. 游標大小:

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

 

8. min-height: 最小高度相容代碼

.minheight500{min-height:500px;height:auto !important;height:500px;overflow:visible;}

9. 滑鼠不允許點擊:

cursor:not-allowed;

10. mac font: osx平臺字體優化

font-family:"Hiragino Sans GB","Hiragino Sans GB W3",'微軟雅黑';

11. 省略號:

.ellipsis{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}

二. css 3 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;

看哪個startColorstr和endColorstr,一共8位,後6位是RGB的顏色代碼,前兩位是16進位的

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

alpha透明相容代碼生成:

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

 

16進位的轉換

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

01.::-webkit-input-placeholder {} 02.::-moz-input-placeholder {} 03.input:focus::-webkit-input-placeholder { colortransparent; } 04.-webkit-appearance:none;  google邊框去除 05.input[type="search"]{-webkit-appearance:textfield;} // 去除chrome預設樣式 06.http://i.wanz.im/2011/02/04/remove_border_from_input_type_search/ 07.http://blog.csdn.net/do_it__/article/details/6789699 08.line-heightnormal/* for non-ie */ 09.line-height22px\9/* for ie */

4.

title 換行:&#13;

5. 漸變

01.background#bde25e/* Old browsers */ 02.background: -moz-linear-gradient(top#bde25e 2%#8bb31d 100%); /* FF3.6+ */ 03.background: -webkit-gradient(linear, left topleft bottom, color-stop(2%,#bde25e), color-stop(100%,#8bb31d)); /* Chrome,Safari4+ */ 04.background: -webkit-linear-gradient(top#bde25e 2%,#8bb31d 100%); /* Chrome10+,Safari5.1+ */ 05.background: -o-linear-gradient(top#bde25e 2%,#8bb31d 100%); /* Opera 11.10+ */ 06.background: -ms-linear-gradient(top#bde25e 2%,#8bb31d 100%); /* IE10+ */ 07.background: linear-gradient(to bottom#bde25e 2%,#8bb31d 100%); /* W3C */ 08.filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bde25e', endColorstr='#8bb31d',GradientType=0 ); /* IE6-9 */ 09.  10.@media screen and (max-width:1220px) and (min-width:1151px) { 11.#wrapper {font-size:15px;} 12.}

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

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

 

http://segmentfault.com/a/1190000000362621

CSS 實現 textArea 的 placeholder 換行

 

6.阻止預設事件

pointer-events:none;

7. 變灰 gray:

01.html{ 02.filter: grayscale(100%); 03.-webkit-filter: grayscale(100%); 04.-moz-filter: grayscale(100%); 05.-ms-filter: grayscale(100%); 06.-o-filter: grayscale(100%); 07.filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); 08.filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1); 09.-webkit-filter: grayscale(1); 10.}

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;

 

position:absolute;top: 0;left: 0;border-width:20px;border-style:solid;border-color:#d1ddde transparent transparent #d1ddde;

 

ie6 bug測試,把border-style設為dashed.

10. 取消textarea右下角可拖動手柄:

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提示:

1.input[type=search]::-webkit-search-decoration, 2.input[type=search]::-webkit-search-cancel-button, 3.input[type=search]::-webkit-search-results-button, 4.input[type=search]::-webkit-search-results-decoration { 5.displaynone; 6.}

 

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. 手機版本網頁a標記虛線框問題

a:focus { outline:none; -moz-outline:none; }

 

19. 焦點去除背景:

-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.jinhusns.com/Products/Download/?type=xcj

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 在C#2.0引入匿名方法之前,聲明委托的唯一方法就是使用命名方法,C#2.0之後的C#3.0中開始引入了Lambda表達式取代了匿名方法。 匿名方法 要說Lambda必然離不開匿名方法,實際上,Lambda的本質就是一個匿名方法,上代碼 上述代碼中,首先定義了一個委托SayHello,註冊到改委托的 ...
  • 前面準備:下載spring.net並解壓 下載地址:spring.net下載地址 Ioc:控制反轉 DI:依賴註入 一、IOC(控制反轉) 1.新建一個控制台程式springTest,引用dll。 Spring.NET > bin > net > 4.0 > release下找到 Comon.Log ...
  • 什麼是ORM? ORM的全稱是Object Relational Mapping,即對象關係映射。它的實現思想就是將關係資料庫中表的數據映射成為對象,以對象的形式展現,這樣開發人員就可以把對資料庫的操作轉化為對這些對象的操作。因此它的目的是為了方便開發人員以面向對象的思想來實現對資料庫的操作。 OR ...
  • DataGridView是在用C#做windows界面程式時常用到的控制項,DataGridView的功能非常多,用起來也非常複雜,下麵我就為DataGridView提供一個擴展. 實現目標: 1: DataGridView的顯示內容使用文本配置,不使用編碼,可以簡化編碼.2: 為DatgaGridV ...
  • 1.絕對路徑轉相對路徑 絕對轉相對似乎C#沒有提供實現,需要自己寫,這裡摘選了一位博友的實現方法: string RelativePath(string absolutePath, string relativeTo) { //from - www.cnphp6.com string[] absol ...
  • 異常處理彙總-開發工具 http://www.cnblogs.com/dunitian/p/4522988.html ...
  • 項目前景 由於之前的列印是客戶端程式,也就是winform做的,現在需要改版成網頁版,其他功能都能夠很好的實現,就是在列印上遇到一些難點。由於第一次做列印功能,剛開始照搬winform中調用word文檔實現列印,在本地運行時都很正常,可是發佈到IIS之後,怎麼也實現不了,經過研究學習,發現客戶端不可 ...
  • 最近抽空看了一下ASP.NET MVC的部分源碼,順帶寫篇文章做個筆記以便日後查看。 在UrlRoutingModule模塊中,將請求處理程式映射到了MvcHandler中,因此,說起Controller的激活,首先要從MvcHandler入手,MvcHandler實現了三個介面:IHttpAsyn ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...