实现五彩标题,即每个span设置的字呈现不同的颜色.如图。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>五彩标题</title>
<style type="text/css">
h3{font-family: Georgia, 'Times New Roman', Times, serif;font-size: 80px;}
</style>
</head>
<body>
<h3><span style="color: red;">五</span>
<span style="color: yellow;">彩</span>
<span style="color: blue;">斑</span>
<span style="color: rgb(87, 57, 218);">斓</span>
</h3>
</body>
</html>
span中的style设置可根据个人发挥,这是不同颜色或者不同属性。更多的内容也可继续插入文本。