zoukankan      html  css  js  c++  java
  • 嵌套列表

    可在<li>元素中放入另一个列标来创建子列表,或者叫嵌套列表。

    <!DOCTYPE html>
    <!--
    To change this license header, choose License Headers in Project Properties.
    To change this template file, choose Tools | Templates
    and open the template in the editor.
    -->
    <html>
        <head>
            <title>TODO supply a title</title>
            <meta charset="UTF-8">
            <meta name="viewport" content="width=device-width, initial-scale=1.0">
        </head>
        <body>
            <div>嵌套列表</div>
            <ul>
                <li>原本的列表</li>
                <li>原本的列表
                    <ul>
                        <li>另一个列标</li>
                        <li>另一个列标</li>
                        <li>另一个列标</li>
                        <li>另一个列标</li>
                    </ul>
                </li>
                <li>原本的列表</li>
            </ul>
        </body>
    </html>
    

      

  • 相关阅读:
    HDU 3068 Manacher
    HDU 6188最小费用流
    Codeforces Round #442 (Div. 2) Danil and a Part-time Job
    并查集
    HDU 5988最小网络流(浮点数)
    HOJ
    HOJ
    POJ
    POJ
    关于async
  • 原文地址:https://www.cnblogs.com/q2546/p/9337199.html
Copyright © 2011-2022 走看看