首頁  >  文章  >  web前端  >  html5如何設定文字顏色灰色

html5如何設定文字顏色灰色

coldplay.xixi
coldplay.xixi原創
2021-03-03 16:18:528626瀏覽

html5設定文字顏色灰色的方法:使用屬性【text-shadow】向文字設定陰影,語法為【object.style.textShadow=“2px 2px #ff0000”】。

html5如何設定文字顏色灰色

本教學操作環境:windows7系統、html5版,DELL G3電腦。

html5設定文字顏色灰色的方法:

text-shadow屬性為文字設定陰影。

  • 預設值: none

  • 繼承性:yes

  • 版本: CSS3

語法:

object.style.textShadow=“2px 2px #ff0000”
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>文字阴影</title>
<style type="text/css">
p {
font-family:Verdana, Geneva, sans-serif;
font-weight:bold;
font-size:36px;
color:#f90;
text-shadow:-5px -5px 3px #00f,
5px 5px 3px #333;/* 添加文字阴影 */
}
</style>
<body>
<p>阴影属性<br />
  text-shadow</p>
</body>
</html>

#相關學習推薦:html影片教學

以上是html5如何設定文字顏色灰色的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn