博客园  :: 首页  :: 联系 :: 订阅 订阅  :: 管理

有序列表添加个性样式

Posted on 2009-03-09 20:58  ╁蓝驿┲→  阅读(227)  评论(0编辑  收藏  举报
有序列表样式
  1. this is line one

  2. here is line two

  3. and last line

<style>
  ol {
font: italic 1em georgia, times, serif;
color: #999999;
}

ol p {
font: normal .8em arial, helvetica, sans-serif;
color: #000000;
}
</style>

<ol>
<li>
<p>this is line one</p>
<li>
<p>here is line two</p>
<li>
<p>and last line</p>
</li></ol>