zoukankan      html  css  js  c++  java
  • 有序列表添加个性样式

    有序列表样式
    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>







     
  • 相关阅读:
    Ajax 异步请求返回集合遍历问题
    JS 类数组,字符串,转换成数组的方法
    laravel、TP、YII三个框架的优缺点对比
    纵深防御
    渗透测试小结
    常见的设计模式
    CDN简介
    WAF小介
    分布式事务及其常见的解决方案
    redis主从复制
  • 原文地址:https://www.cnblogs.com/twh/p/1407278.html
Copyright © 2011-2022 走看看