css链接和列表样式

链接和列表样式

链接样式
a:link { color: #FF0000; } /* 未访问的链接 */
a:visited { color: #00FF00; } /* 已访问链接 */
a:hover { color: #FF00FF; } /* 鼠标移动链接上 */
a:active { color: #0000FF; } /* 鼠标点击时 */
文本修饰
/* text-decoration属性主要用来设置文本的下划线 */
a:link { text-decoration: none; }
a:visited { text-decoration: none; }
a:hover { text-decoration: underline; }
a:active { text-decoration: underline; }
背景颜色
a:link { background-color: #B2FF99; }
a:visited { background-color: #FFFF85; }
a:hover { background-color: #FF704D; }
a:active { background-color: #FF704D; }
不同的列表项标记
/* list-style-type指定列表项的类型 */
ul.a { list-style-type: circle; }
ul.b { list-style-type: square; }
ol.c { list-style-type: upper-roman; }
ol.d { list-style-type: lower-alpha; }
自定义列表项的图像
ul { list-style-image: url('test.img'); }
浏览器兼容的解决方案
ul 
{
list-style-type: none;
padding: 0px;
margin: 0px;
}
ul li
{
background-image: url('square.gif');
background-repeat: no-repeat;
background-position: 0px 5px;
padding-left: 15px;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值