+ -
当前位置:首页 → 问答吧 → 首字母放大css技术

首字母放大css技术

时间:2010-10-31

来源:互联网

首字母放大css技术
demo地址:http://theswishlife.com/

作者: linjuming   发布时间: 2010-10-31


<style> p{font-size:12px;} p.one:first-letter{font-size:50px;} p.two{text-transform:capitalize;} </style> <p class="one">hello how are you</p> <p class="two">hello how are you</p>
 提示:您可以先修改部分代码再运行
[ 本帖最后由 chenwencheng 于 2010-10-31 18:20 编辑 ]

作者: chenwencheng   发布时间: 2010-10-31

在支持:first-letter的浏览器用:first-letter,不支持的用js加<span>和class

作者: Frully   发布时间: 2010-10-31

谢谢,明白

作者: linjuming   发布时间: 2010-10-31