关于css中,ul li的背景小图标属性设置
发布网友
发布时间:2022-04-25 13:53
我来回答
共2个回答
热心网友
时间:2022-04-06 12:49
=w=,三个方法……
一:把ul或li 中的行高删掉。
二:修改图片,把那红色的画下一点,可做成gif透明图(如原本图为:16*16,可画成:16*21,红色部分在最底部。)。
三:去掉list-style-image属性,改为在li 中用 background 属性
如:
ul{list-style:none;}
li{padding-left:18px;background:url(pot.gif) no-repeat left 5px;}
以上……
热心网友
时间:2022-04-06 14:07
先去掉li的list-style-image属性,改为在li 中用 background 属性定义前置图标
如:
ul{
list-style:none;
}
li{
padding-left:18px;background:url(你的图片地址) no-repeat left 5px;
}