(1)使用标签样式,设置字体颜色:#2A1FFF;字体大小:14px。内容与边框之间的距离:5px。
(2)使用超链接伪类:不带下划线;颜色:#333333;鼠标悬停在超链接上方时,显示下划线;颜色:#FF5500。
1、
<div style=“color:#2A1FFF;font-size: 14px;padding:5px;”></div>
2、
a { text-decoration:none;color:#333333}
a:hover{ text-decoration:underline;color:#FF5500}