css小技巧

 

 

最近工做收集的一些css的小技巧:css

1、黑白圖像
當你須要讓一張彩色的圖片顯示爲黑白照片的時候,你能夠用下面的一段代碼。
img.desaturate{
        filter: grayscale(100%);
        -webkit-filter: grayscale(100%);
        -moz-filter: grayscale(100%);
        -ms-filter: grayscale(100%);
        -o-filter: grayscale(100%);
}
2、使用 :not() 在菜單上應用/取消應用邊框
先給每個菜單項添加邊框
.nav li{
        border-right: 1px solid #666;
}
而後再除去最後一個元素
.nav li:last-child{
        border-right: none;
}
也能夠直接使用 :not() 僞類來應用元素
.nav li:not(:last-child){
        border-right: 1px solid #666
}
若是你的元素有兄弟元素的話,也可使用通用的熊年末選擇符( ~ )
.nav li:first-child ~ li{
        border-left: 1px solid #666
}
3、頁面頂部陰影
給網頁加上漂亮的頂部陰影效果
body:before{
        content: '';
        position: fixed;
        top: -10px;
        left: 0;
        width: 100%;
        height: 10px;
        -webkit-box-shadow: 0px 0px 10px rgba(0,0,0,.8);
        -moz-box-shadow: 0px 0px 10px rgba(0,0,0,.8);
        box-shadow: 0px 0px 10px rgba(0,0,0,.8);
        z-index: 100;
}
4、給 body 添加行高
不須要給別給 p,h之類的添加行高,直接:
body{
        line-height: 1;
}
5、全部一切都垂直居中
html,body{
        height: 100%;
        margin: 0;
}
body{
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        display: -webkit-flex;
        display: flex;
}
IE11中須要注意 flexbox
6、逗號分隔列表
讓HTML列表項看上去像被一個真正的,分隔的列表
ul > li:not(:last-child)::after{
        content: ",";
}
7、使用負的 nth-child 選擇項目
在 css 中使用負的 nth-child 選擇項目1到項目n
li{
        display: none;
}
li:nth-child(-n+3){
        display: block;
}
8、對圖標使用  SVG
.logo{
        background: url("logo.svg");
}
9、優化顯示文本
有時候,字體並不能在全部設備上都達到最佳的顯示,因此可讓設備瀏覽器來幫助你
html{
        -moz-osx-font-smoothing: grayscale;
        -webkit-font-smoothing: antialiased;
        text-rendering: optimizelegibility;
}
10、對純 css 滑塊使用 max-height
使用 max-height 和溢出隱藏來實現只有 css 的滑塊
.slider ul{
        max-height: 0;
        overflow: hidden;
}
.slider:hover ul{
        max-height: 1000px;
        transition: .3s ease;
}
11、繼承 box-sizing
讓 box-sizing 繼承 html
html{
        box-sizing: border-box;
}
*,*:before, *:after{
        box-sizing: inherit;
}
12、表格單元格等寬
.table{
        table-layout: fixed;
}
十3、 用 Flexbox 擺脫外邊距的各類 hack
當你須要用到列分隔符時,經過flexbox的 space-between 屬性,你就能夠擺脫 nth-   first-  last-chlid 的 hack 了
.list{
        display: flex;
        justify-content: space-between;
}
.list .person{
        flex-basis: 23%;
}
十4、使用屬性選擇器用於空連接
當 a 元素沒有文本值,可是 href 屬性有連接的時候顯示連接
a[href^="http"]:empty::before{
        content: attr(href);
}
十5、檢測鼠標雙擊
HTML: <div class="test">
                <span>
                        <input type="text" value="" readonly="true"/>
                        <a href="http://renpingjun.com">Double click me</a>
                </span>
        </div>
CSS:.test span{
        position: relative;
}
.test span a{
        position: relative;
        z-index: 2;
}
.test span a:hover,.test span a:active{
        z-index: 4;
}
.test span input{
       
        border: 0;
        cursor: pointer;
        position: absolute;
        top: -1px;
        left: 0;
        width: 101%; 
        height: 301%; 
        z-index: 3;
}
.test span input:focus{
       
        border: 0;
        z-index: 1;
}
十6、 CSS 寫出三角形
div.arrow-up{
        width: 0px;
        height: 0px;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-bottom: 5px solid #ccc;
        font-size: 0px;
        line-height: 0px;
}
div.arrow-down{
        width: 0px;
        height: 0px;
        border-bottom: 5px solid transparent;
        border-top: 5px solid transparent;
        border-right: 5px solid #ccc;
        font-size: 0px;
        line-height: 0px;
}
div.arrow-left{
        width: 0px;
        height: 0px;
        border-bottom: 5px solid transparent;
        border-top: 5px solid transparent;
        border-left: 5px solid #ccc;
        font-size: 0px;
        line-height: 0px;
}
div.arrow-right{
        width: 0px;
        height: 0px;
        border-bottom: 5px solid transparent;
        border-top: 5px solid transparent;
        border-left: 5px solid #ccc;
        font-size: 0px;
        line-height: 0px;
}
十7、 CSS calc() 的使用
calc() 用法相似於函數,可以給元素設置動態的值

.simpleBlock{
        width: calc(100% - 100px);
}

.complexBlock{
        width: calc(100% - 50% / 3);
        padding: 5px calc(3% - 2px);
        margin-left: calc(10% + 10px);
}
十8、文本漸變
h2[data-text]{
        position: relative;
}
h2[data-text]::after{
        content: attr(data-text);
        z-index: 10;
        color: #e3e3e3;
        position: absolute;
        top: 0;
        left: 0;
        -webkit-mask-image: -webkit-gradient(linear, left top,left bottom,from(rgba(0,0,0,0)),color-stop(50%,rgba(0,0,0,1)),to(rgba(0,0,0,0)));
}
十9、禁用鼠標事件
.disabled{
        pointer-events: none;
}

html

相關文章
相關標籤/搜索