• 定义


    定义列表由<dl>元素,并通常包含一系列术语及其定义,在<dl>元素内部,经常能看到成对的<dt>和<dd>元素,<dt>元素用来包含被定义的术语。<dd>元素用来包含定义

    <!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>
            <dl>
                <dt>定义</dt>
                <dd>定义的不同解释</dd>
                <dt>定义</dt>
                <dd> 定义的不同解释</dd>
                <dd>定义的不同解释</dd>
                <dt>定义</dt>
                <dt>定义</dt>
                <dd>定义的不同解释</dd>
            </dl>
        </body>
    </html>
    

      

  • 相关阅读:
    Binary Trees
    [POJ] String Matching
    Tree
    Maxmum subsequence sum problem
    poj 2104 划分树
    poj 2486 树形dp
    poj 1848 树形dp
    hdu 4578 线段树
    hdu 4585 set应用
    hdu 2412 树形DP
  • 原文地址:https://www.cnblogs.com/q2546/p/9337158.html
Copyright © 2020-2023  润新知