css基礎 列表專案的使用

2021-08-29 06:15:14 字數 672 閱讀 7799

list-style-type 列表符號及標號屬性

列表符號

list-style-type: disc(實心圓形) | circle (空心圓形) | square(空心矩形) | none(沒有符號)

eg).square

…..

…..

列表編號

list-style-type: decimal(阿拉伯數字) | lower-roman(小寫羅馬字) | upper-roman(大寫羅馬字) | lower-alpha(小寫英文本) | upper-alpha(大寫英文本)

eg)#low-ro    //通過id來呼叫

list-style-image式列表符號屬性

list-style-image: (與img標記用法差不多) | none(不使用)

eg) .list-image

list-style-position列表符號縮排屬性

list-style-position: inside | outside

//inside 和outside 是指列表符號不向外凸和向外凸。即列表的第二行文字不向內縮排和向內縮排

list-style的綜合屬性

list-style: (image | type) || position // 『|』或的意思; 『||』並的意思

在List Control中實現列表專案的上下移動

一 前言 list control是visual c 的乙個通用控制項,在很多程式中都有對它的使用,比如windows 2000任務管理器的程序顯示,就是乙個報表樣式的list control。有時候,我們程式設計不僅需要使用list control來顯示資料,同時還希望能在控制項中作一些簡單編輯,...

python 使用zip合併相鄰的列表項

1 使用zip 函式和iter 函式,來合併相鄰的列表項 x 1,2,3,4,5,6,7,8,9 zip iter x 2 1,2 3,4 5,6 7,8 zip iter x 3 1,2,3 4,5,6 7,8,9 zip iter x 4 1,2,3,4 5,6,7,8 之所以會出現上述結果,是...

css 修改列表項 li 顯示的圓點的顏色

centerbt li 擴充套件 css中用list style type指定列表 lists 前面符號,如下 li 符號名稱可用的值為 disc css1 實心圓 circle css1 空心圓 square css1 實心方塊 decimal css1 阿拉伯數字 lower roman css...