CSS text-fill-color

admin發表於2019-09-17

此屬性可以設定文字的填充顏色。

如果同時設定 text-fill-color和color屬性,那麼前者將覆蓋後者的效果。

語法結構:

[CSS] 純文字檢視 複製程式碼
text-fill-color:<color>

程式碼例項:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
html,body{
	margin:50px 0;
}
.text-fill-color{
	width:950px;
	margin:0 auto;
	background:-webkit-linear-gradient(top,#eee,#aaa 50%,#333 51%,#000);
	-webkit-background-clip:text;
	-webkit-text-fill-color:transparent;
	font-size:30px;
	text-transform:uppercase;
}
</style>
</head>
<body>
<div class="text-fill-color">text-fill-color</div>
</body>
</html>

上面的程式碼演示了text-fill-color屬性的作用,更多內容參閱相關閱讀。

相關閱讀:

(1).linear-gradient參閱CSS3 linear-gradient()線性漸變一章節。

(2).background-clip參閱CSS3 background-clip一章節。

(3).text-transform參閱CSS text-transform屬性一章節。

相關文章