发布网友 发布时间:2022-04-02 02:00
共4个回答
热心网友 时间:2022-04-02 03:29
需要准备的材料分别有:电脑、浏览器、html编辑器。
1、首先,打开html编辑器,新建html文件,例如:index.html。
2、在index.html中的<style>标签中,输入css代码:a{font-family: 楷体;font-size: 20px;color: orange;}。
3、浏览器运行index.html页面,此时用CSS成功改变了超链接的字体、大小、颜色。
热心网友 时间:2022-04-02 04:47
简单的写法:
<style type="text/css">
a{ color:#f00/*颜色自定义*/;font-family:"楷体"; font-size:20px;}/*未访问的链接,已访问的链接,点击激活链接*/
a:hover{ color:#0f0/*颜色自定义*/}}/* 鼠标在链接上 */
</style>
另一种方法
<style type="text/css">
a:link{ color:#f00/*颜色自定义*/;font-family:"楷体"; font-size:20px;} /* 未访问的链接 */
a:visited{color:#f00/*颜色自定义*/} /* 已访问的链接 */
a:hover{ color:#0f0/*颜色自定义*/}/* 鼠标在链接上 */
a:active{ color:#660099/*颜色自定义*/}/* 点击激活链接 */
</style>
热心网友 时间:2022-04-02 06:22
a:hover{font-family:"楷体";
font-size:20px}
热心网友 时间:2022-04-02 08:13
a{color:red}
a:hover{color:blue}