溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

css一些不常見(jiàn)但很有用的屬性操作示例

發(fā)布時(shí)間:2021-03-17 11:14:28 來(lái)源:億速云 閱讀:176 作者:清風(fēng) 欄目:web開(kāi)發(fā)

這篇文章主要為大家展示了css一些不常見(jiàn)但很有用的屬性操作示例,內(nèi)容簡(jiǎn)而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶大家一起來(lái)研究并學(xué)習(xí)一下“css一些不常見(jiàn)但很有用的屬性操作示例”這篇文章吧。

1、自定義文本選擇

::selection {
  background: red;
  color: black;
}

2、去掉video的controls中的下載按鈕

video::-internal-media-controls-download-button {
    display:none;
}

video::-webkit-media-controls-enclosure {
    overflow:hidden;
}

video::-webkit-media-controls-panel {
    width: calc(100% + 30px); 
}

3、css3特性中的transform:translateZ(0)有什么作用

GPU加速,優(yōu)化前端性能

4、滾動(dòng)條樣式修改

/* * 可以換其他選擇器 */
*::-webkit-scrollbar {
    width: 2px;
  height: 2px;
}
*::-webkit-scrollbar-thumb {
  border-radius: 5px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #00063a;
}
*::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 0;
  background: #00063a;
}

5、input type number 隱藏上下按鈕

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
input[type="number"]{
    -moz-appearance: textfield;
}

6、css漸變虛框

<style>
    .box {
        width: 150px;
        border: 2px dashed #fff;
        background: linear-gradient(to bottom, #34538b, #cd0000);
        background-origin: border-box;
    }
    .content {
        height: 100px;
        background-color: #fff;
    }
</style>
<div class="box">
    <div class="content"></div>
</div>

css一些不常見(jiàn)但很有用的屬性操作示例

7、border漸變色圓角

<style type="text/css">
	.content { 
		width: 100px; 
	   	height: 100px; 
	    box-sizing: border-box; 
	    padding: 5px; 
	    border-radius: 50%; 
	    background-image: -webkit-linear-gradient(top, red 0%, blue 30%, yellow 60%, green 90%);  
	    background-image: -moz-linear-gradient(top, red 0%, blue 30%, yellow 60%, green 90%); 
	    background-image: linear-gradient(top, red 0%, blue 30%, yellow 60%, green 90%);  
	}
	.box { 
		width:100%; 
	    height:100%; 
	    border-radius:50%; 
	    background:#fff; 
	}
</style>
<div class="content">
	<div class="box"></div>
</div>

css一些不常見(jiàn)但很有用的屬性操作示例

8、輸入框光標(biāo)變色,文字不變色

input{
    caret-color: red;
}

css一些不常見(jiàn)但很有用的屬性操作示例

9、錐形漸變

.box {
    width: 300px; height: 300px;
    background: conic-gradient(from 45deg, white, black, white);
}

css一些不常見(jiàn)但很有用的屬性操作示例

10、 text-decoration實(shí)現(xiàn)波浪線

wavy {
    display: block;
    height: .5em;
    white-space: nowrap;
    letter-spacing: 100vw;
    padding-top: .5em;
    overflow: hidden;
}
wavy::before {
    content: "\2000\2000";
    /* IE瀏覽器實(shí)線代替 */
    text-decoration: overline;
    /* 現(xiàn)代瀏覽器 */
    text-decoration: overline wavy;
}

css一些不常見(jiàn)但很有用的屬性操作示例

11、css三角形

<style type="text/css" media="screen">
.div1{
	width: 0;
	height: 0;
	border: 100px solid;
	<!--上右下左-->
	border-color: red transparent transparent transparent;
}
</style>
<div class="div1"></div>

css一些不常見(jiàn)但很有用的屬性操作示例

12、css背景漸變與背景圖片并存

background: url(https://img.alicdn.com/imgextra/i4/1881744325/O1CN01JBktT81hotb8c6Py0_!!1881744325.png) center no-repeat,linear-gradient(to bottom,red,#3c3f40);

css一些不常見(jiàn)但很有用的屬性操作示例

13、自定義瀏覽器滾動(dòng)條

/*定義滾動(dòng)條寬高及背景,寬高分別對(duì)應(yīng)橫豎滾動(dòng)條的尺寸*/
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background-color: rgba(245, 245, 245, 0.47);
}
 
/*定義滾動(dòng)條的軌道,內(nèi)陰影及圓角*/
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    border-radius: 10px;
    background-color: #f5f5f5;
}
 
/*定義滑塊,內(nèi)陰影及圓角*/
::-webkit-scrollbar-thumb {
    /*width: 10px;*/
    height: 20px;
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: rgba(85, 85, 85, 0.25);
}

14、改變placeholder的字體顏色大小

input::-webkit-input-placeholder { 
    /* WebKit browsers */ 
    font-size:14px;
    color: #333;
} 
input::-moz-placeholder { 
    /* Mozilla Firefox 19+ */ 
    font-size:14px;
    color: #333;
} 
input:-ms-input-placeholder { 
    /* Internet Explorer 10+ */ 
    font-size:14px;
    color: #333;
}

以上就是關(guān)于“css一些不常見(jiàn)但很有用的屬性操作示例”的內(nèi)容,如果改文章對(duì)你有所幫助并覺(jué)得寫(xiě)得不錯(cuò),勞請(qǐng)分享給你的好友一起學(xué)習(xí)新知識(shí),若想了解更多相關(guān)知識(shí)內(nèi)容,請(qǐng)多多關(guān)注億速云行業(yè)資訊頻道。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

css
AI