亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

幾個超級實用的css代碼片段

發布時間:2020-08-14 12:37:34 來源:ITPUB博客 閱讀:139 作者:freebus 欄目:web開發

1、伸展一個元素到窗口高度

  在具體場景中,你可能想要將一個元素伸展到窗口高度,基本元素的調整只能調整容器的大小,因此要使一個元素伸展到窗口高度,我們需要伸展頂層元素:html和body:

html, 

body {

    height: 100%;

}

  然后將100%應用到任何元素的高:

div {

    height: 100%;

}

2、只在一邊或兩邊顯示盒子陰影

  如果你要一個盒陰影,試試這個技巧,能為任一邊添加陰影。為了實現這個,首先定義一個有具體寬高的盒子,然后正確定位:after偽類。實現底邊陰影的代碼如下:

.box-shadow {

    background-color: #FF8020;

    width: 160px;

    height: 90px;

    margin-top: -45px;

    margin-left: -80px;

    position: absolute;

    top: 50%;

    left: 50%;

}

.box-shadow:after {

    content: "";

    width: 150px;

    height: 1px;

    margin-top: 88px;

    margin-left: -75px;

    display: block;

    position: absolute;

    left: 50%;

    z-index: -1;

    -webkit-box-shadow: 0px 0px 8px 2px #000000;

       -moz-box-shadow: 0px 0px 8px 2px #000000;

            box-shadow: 0px 0px 8px 2px #000000;

}

3、制造模糊文本

  想要讓文本模糊?可以使用color透明和text-shadow實現。

.blurry-text {

   color: transparent;

   text-shadow: 0 0 5px rgba(0,0,0,0.5);

}

3、新版清除浮動(2011)

.clearfix:before, .container:after { content: ""; display: table; }

.clearfix:after { clear: both; }

/* IE 6/7 */

.clearfix { zoom: 1; }

4、通用媒體查詢

/* Smartphones (portrait and landscape) ----------- */

@media only screen 

and (min-device-width : 320px) and (max-device-width : 480px) {

  /* Styles */

}

/* Smartphones (landscape) ----------- */

@media only screen and (min-width : 321px) {

  /* Styles */

}

/* Smartphones (portrait) ----------- */

@media only screen and (max-width : 320px) {

  /* Styles */

}

/* iPads (portrait and landscape) ----------- */

@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {

  /* Styles */

}

/* iPads (landscape) ----------- */

@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {

  /* Styles */

}

/* iPads (portrait) ----------- */

@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {

  /* Styles */

}

/* Desktops and laptops ----------- */

@media only screen and (min-width : 1224px) {

  /* Styles */

}

/* Large screens ----------- */

@media only screen and (min-width : 1824px) {

  /* Styles */

}

/* iPhone 4 ----------- */

@media only screen and (-webkit-min-device-pixel-ratio:1.5), only screen and (min-device-pixel-ratio:1.5) {

  /* Styles */

}

5、強制出現垂直滾動條

html { height: 101% }

6、CSS3 斑馬線

tbody tr:nth-child(odd) {

    background-color: #ccc;

}

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

棋牌| 平远县| 勐海县| 思茅市| 子长县| 云和县| 民权县| 昭平县| 楚雄市| 筠连县| 兴文县| 通城县| 普宁市| 霍邱县| 栾城县| 新野县| 历史| 登封市| 阿拉善右旗| 五家渠市| 璧山县| 莫力| 宿州市| 洞口县| 乃东县| 都昌县| 天长市| 韶关市| 凤庆县| 喜德县| 商南县| 共和县| 安西县| 福泉市| 荣昌县| 利川市| 微山县| 扎赉特旗| 海门市| 鸡泽县| 仪陇县|