heigth若是使用100%,會根據父級的高度來決定,因此使用100vh單位。css
.dom{ width:100%; height:100vh; }
.wrap { text-align: justify; text-justify: distribute-all-lines; //ie6-8 text-align-last: justify; //一個塊或行的最後一行對齊方式 -moz-text-align-last: justify; -webkit-text-align-last: justify; }
// 單列展現時 .wrap { width: 25px; line-height: 18px; height: auto; font-size: 12px; padding: 8px 5px; word-wrap: break-word;/*英文的時候須要加上這句,自動換行*/ } // 多列展現時 .wrap { height: 210px; line-height: 30px; text-align: justify; writing-mode: vertical-lr; //從左向右 writing-mode: tb-lr; //IE從左向右 //writing-mode: vertical-rl; -- 從右向左 //writing-mode: tb-rl; -- 從右向左 }
.wrap { // 若是按tab能選中該元素,如button,而後按回車仍是能執行對應的事件,如click。 pointer-events: none; cursor: default; }
.wrap { -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; }
在瀏覽器中用css開啓硬件加速,使GPU (Graphics Processing Unit) 發揮功能,從而提高性能。硬件加速在移動端尤爲有用,由於它能夠有效的減小資源的利用。
目前主流瀏覽器會檢測到頁面中某個DOM元素應用了某些CSS規則時就會開啓,最顯著的特徵的元素的3D變換。若是不使用3D變形,咱們能夠經過下面方式來開啓:html
.wrap { transform: translateZ(0); }
在 Chrome and Safari中,當咱們使用CSS transforms 或者 animations時可能會有頁面閃爍的效果,下面的代碼能夠修復此狀況:前端
.cube { -webkit-backface-visibility: hidden; backface-visibility: hidden; -webkit-perspective: 1000; perspective: 1000; /* Other transform properties here */ }
在webkit內核的瀏覽器中,另外一個行之有效的方法是css3
.cube { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); /* Other transform properties here */ }
p {text-transform: uppercase} // 將全部字母變成大寫字母 p {text-transform: lowercase} // 將全部字母變成小寫字母 p {text-transform: capitalize} // 首字母大寫 p {font-variant: small-caps} // 將字體變成小型的大寫字母
.wrap { filter:alpha(opacity=50); -moz-opacity:0.5; -khtml-opacity: 0.5; opacity: 0.5; }
.wrap { -webkit-transform-style: preserve-3d; -webkit-backface-visibility: hidden; -webkit-perspective: 1000; }
通常在富文本中返回換行符不是<br>的標籤,並且\n。不使用正則轉換的狀況下,可經過下面樣式實現換行。web
body { white-space: pre-line; }
a { outline: none;//或者outline: 0 text-decoration:none; //取消默認下劃線 }
<a href="//www.webqdkf.com">有課前端網</a> <style> a:after {content: " (" attr(href) ")";} </style>
select{ text-align: center; text-align-last: center; } select option { direction: rtl; }
input{ color: #fff; caret-color: red; }
// 父元素下的子元素是行內元素 .wrap { white-space: nowrap; } // 若父元素下的子元素是塊級元素 .wrap { white-space: nowrap; // 子元素不被換行 display: inline-block; }
這裏不使用flex佈局的狀況。經過vertival-alignapi
.wrap { height: 100, line-height: 100 } img { vertival-align:middle } // vertical-align css的屬性vertical-align用來指定行內元素(inline)或表格單元格(table-cell)元素的垂直對齊方式。只對行內元素、表格單元格元素生效,不能用它垂直對齊塊級元素 // vertical-align:baseline/top/middle/bottom/sub/text-top;
.scale { width: 100%; padding-bottom: 56.25%; height: 0; position: relative; } .item { position: absolute; width: 100%; height: 100%; background-color: 499e56; } <div class="scale"> <div class="item"> 這裏是全部子元素的容器 </div> </div>
span { display: inline-block }
主要是經過css旋轉動畫的實現:瀏覽器
.dom{ -webkit-animation:circle 1s infinite linear; } @keyframes circle{ 0%{ transform: rotate(0deg); } 100%{ transform: rotate(360deg); } }
<div class="text_signature " >fly63前端網,一個免費學習前端知識的網站</div> <style> .text_signature { -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-image: linear-gradient(to right, #ec2239, #40a4e2,#ea96f5); width: 320px; } </style>
<div class="text_shadow"></div> <style> .text_shadow{ width:500px; height:100px; box-shadow: 0px 0px 13px 1px rgba(51, 51, 51, 0.1); } </style>
<div class="text_gradient"></div> <style> .text_gradient{ width:500px; height:100px; background: linear-gradient(25deg, rgb(79, 107, 208), rgb(98, 141, 185), rgb(102, 175, 161), rgb(92, 210, 133)) rgb(182, 228, 253); } </style>
<div class="text_solid">世界那麼大我想去看看</div> <style> .text_solid{ font-size: 32px; text-align: center; font-weight: bold; line-height:100px; text-transform:uppercase; position: relative; background-color: #333; color:#fff; text-shadow: 0px 1px 0px #c0c0c0, 0px 2px 0px #b0b0b0, 0px 3px 0px #a0a0a0, 0px 4px 0px #909090, 0px 5px 10px rgba(0, 0, 0, 0.6); } </style>
.swper{ background-image: url(./img/bg.jpg); width:100%; height:100%;//父級高不爲100%請使用100vh zoom: 1; background-color: #fff; background-repeat: no-repeat; background-size: cover; -webkit-background-size: cover; -o-background-size: cover; background-position: center 0; }
方式一:dom
.stroke { -webkit-text-stroke: 1px greenyellow; text-stroke: 1px greenyellow; }
方式二:編輯器
.stroke { text-shadow:#000 1px 0 0,#000 0 1px 0,#000 -1px 0 0,#000 0 -1px 0; -webkit-text-shadow:#000 1px 0 0,#000 0 1px 0,#000 -1px 0 0,#000 0 -1px 0; -moz-text-shadow:#000 1px 0 0,#000 0 1px 0,#000 -1px 0 0,#000 0 -1px 0; *filter: Glow(color=#000, strength=1); }
.dom{ opacity:0.4; filter:alpha(opacity=40); /* IE8 及其更早版本 */ }
.dom{ height: 1px; background: #dbdbdb; transform:scaleY(0.5); }
Ps:出現1px變粗的緣由,好比在2倍屏時1px的像素實際對應2個物理像素。函數
.dom{ height: 1px; background: #dbdbdb; transform:scaleY(0.5); }
Ps:出現1px變粗的緣由,好比在2倍屏時1px的像素實際對應2個物理像素。
css本身也可以進行簡單的運算,主要是用到了calc這個函數。實現不一樣單位的加減運算:
.div{ width: calc(100% - 50px); }
.vague_text{ color: transparent; text-shadow: #111 0 0 5px; }
一張彩色的圖片就能實現鼠標移入變彩色,移出變灰的效果
<a href='' class='icon'><img src='01.jpg' /></a> <style> .icon{ -webkit-filter: grayscale(100%); -moz-filter: grayscale(100%); -ms-filter: grayscale(100%); -o-filter: grayscale(100%); filter: grayscale(100%); filter: gray; } .icon:hover{ filter: none; -webkit-filter: grayscale(0%); } </style>
當圖片比例不固定時,想要讓圖片自適應,通常都會用background-size:cover/contain,可是這個只適用於背景圖。css3中可以使用object-fit屬性來解決圖片被拉伸或是被縮放的問題。使用的提早條件:圖片的父級容器要有寬高。
img{ width: 100%; height: 100%; object-fit: cover; }
fill: 默認值。內容拉伸填滿整個content box, 不保證保持原有的比例。contain: 保持原有尺寸比例。長度和高度中長的那條邊跟容器大小一致,短的那條等比縮放,可能會有留白。cover: 保持原有尺寸比例。寬度和高度中短的那條邊跟容器大小一致,長的那條等比縮放。可能會有部分區域不可見。(經常使用)none: 保持原有尺寸比例。同時保持替換內容原始尺寸大小。scale-down:保持原有尺寸比例,若是容器尺寸大於圖片內容尺寸,保持圖片的原有尺寸,不會放大失真;容器尺寸小於圖片內容尺寸,用法跟contain同樣。
方式一:父級font-size設置爲0
.father{ font-size:0; }
方式二:父元素上設置word-spacing的值爲合適的負值
.father{ word-spacing:-2px }
其它方案:1將行內元素寫爲1行(影響閱讀);2使用浮動樣式(會影響佈局)。
在使用vertical-align:middle實現垂直居中的時候,常常會發現不生效的狀況。這裏須要注意它生效須要知足的條件:
**做用環境:**父元素設置line-height。須要和height一致。或者將display屬性設置爲table-cell,將塊元素轉化爲單元格。
**做用對象:**子元素中的inline-block和inline元素。<div class="box"> <img src=".\test.jpg"/> <span>內部文字</span> </div> <style> .box{ width:300px; line-height: 300px; font-size: 16px; } .box img{ width: 30px; height:30px; vertical-align:middle } .box span{ vertical-align:middle } </style>
PS:vertical-align不可繼承,必須對子元素單獨設置。同時須要注意的是line-height的高度基於font-size(即字體的高度),若是文字要轉行會出現異常哦。