zoukankan      html  css  js  c++  java
  • 项目符号样式

    list-style-type属性允许你控制项目符号(也称为标记)的形状或样式。

    <!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">
            <style type="text/css">
                ol {
                    list-style-type: lower-roman;
                }
            </style>
        </head>
        <body>
            <div>TODO write content</div>
            <h1>对于一个无序列表</h1>
            <h2>这个符号就可以应用</h2>
            <p>它会自动帮你排列一个列表</p>
            <ol>
                <li>星期一</li>
                <li>星期二</li>
                <li>星期三</li>
                <li>星期四</li>
                <li>星期五</li>
            </ol>
        </body>
    </html>
    
  • 相关阅读:
    Zabbix——1
    Hive 基础知识——01
    Vim快捷命令
    Shell——2
    Shell——6
    Shell——4
    Shell——3
    Shell——1
    Hive 安装和配置以及基本语法——02
    Shell——5
  • 原文地址:https://www.cnblogs.com/q2546/p/9440951.html
Copyright © 2011-2022 走看看