当前位置: 代码迷 >> HTML/CSS >> css首字母奇效像报纸正文首字母突出变大
  详细解决方案

css首字母奇效像报纸正文首字母突出变大

热度:466   发布时间:2013-02-06 14:02:21.0
css首字母特效像报纸正文首字母突出变大

http://www.daimami.com/img/2014/01/01/1142081422.jpg

?

<style type="text/css">
p:first-letter 
{
color: #ff0000;
font-size:xx-large
}
</style>


<style type="text/css">
p:first-letter
  {
  color:#ff0000;
  font-size:xx-large;
  }

p:first-line 
  {
  color:#0000ff;
  font-variant:small-caps;
  }
</style>

?

在线预览:http://www.w3school.com.cn/tiy/t.asp?f=csse_firstletter

  相关解决方案