html5設定文字顏色灰色的方法:使用屬性【text-shadow】向文字設定陰影,語法為【object.style.textShadow=“2px 2px #ff0000”】。
本教學操作環境: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中文網其他相關文章!