怎么使用CSS样式设置出的链接样式,代码该怎么改
发布网友
发布时间:2022-04-06 11:24
我来回答
共1个回答
热心网友
时间:2022-04-06 12:54
<style type="text/css">
a{ text-decoration: none; color: blue; }
.my_a{ text-decoration: none; color: blue }
#myA{ text-decoration: none; color: blue }
</style>
以上三种是在样式表里面的写法,区别是选择器不同,依照需要用不同的选择器
<a class="my_a" id="myA" href="" style="text-decoration: none; color: blue;"></a>
这个是直接在链接上写