您好,登錄后才能下訂單哦!
CSS3 中怎么利用text-shadow實(shí)現(xiàn)文字陰影效果,針對(duì)這個(gè)問題,這篇文章詳細(xì)介紹了相對(duì)應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問題的小伙伴找到更簡(jiǎn)單易行的方法。
CSS3設(shè)置文字陰影效果,對(duì)文字字體設(shè)置陰影效果,采用text-shadow樣式,本來在CSS2版本中也有此屬性,但在CSS3中文字陰影text-shadow再次被應(yīng)用,豐富文字排版布局美化效果。
CSS3單詞與語法
CSS3單詞: text-shadow
語法結(jié)構(gòu):text-shadow: 5px 2px 6px black;
5px 代表著:陰影距離文字左5px顯示
2px 代表著:陰影距離文字上2px顯示
6px 代表著:陰影大小范圍
black 代表著:陰影顏色為黑色
例子:
XML/HTML Code復(fù)制內(nèi)容到剪貼板
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style type="text/css">
.All-orange {
font: normal 14px 微軟雅黑,sans-serif;
max-width: auto;
max-height: auto;
background-color: #f8f8f8;
padding: 30px 30px 20px 30px;
color: #666;
border-radius: 5px
}
.All-orange h2 {
font: normal 32px 微軟雅黑,sans-serif;
padding: 20px 0 20px 40px;
display: block;
margin: -30px -30px 10px -30px;
color: #FFF;
background-color: #0CF;
border-radius: 5px;
text-shadow:5px 2px 6px #000;
box-shadow: 5px 2px 6px #000;
}
.All-orange img {
float: left
}
.All-orange h2 img{
margin-top: -15px;
}
</style>
</head>
<body>
<div class="All-orange" id="all">
<h2><img src="../img/launcher_icon_.png" />
悲傷黑白棋
</h2>
</div>
</body>
</html>
關(guān)于CSS3 中怎么利用text-shadow實(shí)現(xiàn)文字陰影效果問題的解答就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識(shí)。
免責(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)容。