关于前端学习:CSS样式列表样式

4次阅读

共计 276 个字符,预计需要花费 1 分钟才能阅读完成。

  • 设置列表润饰符号

    list-style-type:none
    
      1. 无序列表
          实心方块:square
          空心圆:sircle
          实心圆:disc
      2. 有序列表
          数字:decimal
          小写罗马数字:lower-roman
          大写罗马数字:upper-roman
          小写字母:lower-alpha
          大写字母:upper-alpha
  • 设置图片列表符号

    list-style-image:url('图片地址')
  • 设置列表符号的地位

    list-style-position:inside
    
      1. 符号在内容之外:outside
      2. 符号在内容内:inside
  • list-style 款式复合写法,款式值书写程序任意

正文完
 0