備忘錄_20160105(定位)
修改
回首頁
程式 2022-09-20 16:59:19 1663664359 100
表情圖示 / 表情文字 / emoji text 設定顏色,用css陰影功能
表情圖示 / 表情文字 / emoji text 設定顏色,用css陰影功能
<!doctype html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<style>
.classUnicodeEmojiRed
{
color: transparent;
text-shadow: 0 0 0 #ff0000;
}
.classUnicodeEmojiBlue
{
color: transparent;
text-shadow: 0 0 0 #0000ff;
}
</style>
</head>
<body>
<div class="classUnicodeEmojiRed">..🔊..紅的..</div>
<div class="classUnicodeEmojiBlue">..🔊..藍的..</div>
</body>
</html>