发信人: jaspon()
整理人: eagle(2000-06-03 10:46:58), 站内信件
|
首字下沉效果
使用过“Microsoft Word”的朋友对“首字下沉”一定还有印象。在CSS中可以用 首字的伪元素来实现。
<html>
<head>
<style type="text/css">
<!--
p{
font-size:12pt;
line-height:12pt
}
p:first-letter{
font-size:200%;
float:left
}
span{text-transform:uppercase}
-->
</style>
</head>
<body>
<p><span>The first</span>word is bigger than other.</p>
</body>
</html>
-- 子昂轩---这里的世界更精彩!!
URL:http://jaspon.yeah.net
提供js脚本
※ 来源:.月光软件站 http://www.moon-soft.com.[FROM: 202.106.218.225]
|
|