间字距单词距半透明影子
Posted rjl888
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了间字距单词距半透明影子相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style type="text/css">
div
/*字间距,一般默认*/
letter-spacing:2 px;
p
/*单词间距对中文无效,只针对英文*/
word-spacing:10px;
h2 /*半透明颜色*/
color: rgba(0,0,0,0.1);
h1
font-size: 100px;
/*text-shadow:水平位置 垂直位置 模糊位置 阴影颜色(前面两个属性必须写,后面两个为默认值) */
text-shadow:10px 11px 3px rgba(0,0,0,0.1)
</style>
</head>
<body>
<div>我是熊大</div>
<p>my name is XiongDa</p>
<h2>半透明颜色</h2>
<h1>影子效应</h1>
</body>
</html>
以上是关于间字距单词距半透明影子的主要内容,如果未能解决你的问题,请参考以下文章