li元素使用list-style项目符号
日期:2009-01-24 阅读:100 分类:HTML~CSS
项目符号有多种,罗列如下:
disc(实心圆点)、
circle(空心圆圈)、
square(实心方块)、
decimal(阿拉伯数字)、
lower-roman(小写罗马数字)、
upper-roman(大写罗马数字)、
lower-alpha(小写英文字母)、
upper-alpha(大写英文字母)、
none(无)。
比如设定一个列表(ul或ol)的项目符号为方块,如:
程序代码
li{
list-style: square;
}
此外list-style还有一些值,比如可以采用一些小图片作为项目符号,在list-style下直接写url(“图片地址”)。注意如果一个项目列表的左外补丁(margin-left)为零,list-style-position: outside(默认是outside)的项目符号不会显示。
from:
disc(实心圆点)、
circle(空心圆圈)、
square(实心方块)、
decimal(阿拉伯数字)、
lower-roman(小写罗马数字)、
upper-roman(大写罗马数字)、
lower-alpha(小写英文字母)、
upper-alpha(大写英文字母)、
none(无)。
比如设定一个列表(ul或ol)的项目符号为方块,如:
程序代码li{
list-style: square;
}
此外list-style还有一些值,比如可以采用一些小图片作为项目符号,在list-style下直接写url(“图片地址”)。注意如果一个项目列表的左外补丁(margin-left)为零,list-style-position: outside(默认是outside)的项目符号不会显示。
from:
本页链接: http://www.scriptlover.com/static/345-li-list-style
标签: li list-style
相关文章
- 一个不错的相册效果 2008-07-07
- 《功夫熊猫》之经典台词 2008-07-18
- 也谈javascript,flash,silverlight谁更强 2008-09-09
- 26句实用的英语 2008-06-24
- 常用口语(1) 2008-07-14
网友评论
#1: 2011-11-10 23:45:00 by Ducky
Many many qutlaiy points there.