CSS学习2-各种标签设置2

来源:互联网 发布:网络抓包分析工具 编辑:程序博客网 时间:2024/06/06 02:25
/*---------------------------------------------------链接---------------------------------------------------*/
a:link {color:#000000;}      /* 未访问链接*/
a:visited {color:#00FF00;}  /* 已访问链接 */
a:hover {color:#FF00FF;}  /* 鼠标移动到链接上 */
a:active {color:#0000FF;}  /* 鼠标点击时 */
a:hover 必须跟在 a:link 和 a:visited后面
a:active 必须跟在 a:hover后面
/*修饰*/
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;}




h3{color:red;text-align:center;text-decoration:overline;text-transform:uppercase;text-indent:50px;font-style:italic;}


CSS_ID{color:red;text-align:center;text-decoration:overline;text-transform:uppercase;text-indent:50px;font-style:italic;}


(前面可加标签,限制影响范围).CSS_class{color:red;text-align:center;text-decoration:overline;text-transform:uppercase;text-indent:50px;font-style:italic;}


</style>
</head>
<body>
<!---------------------------------------------------文本--------------------------------------------------->
<center>
<h1>aaAAAAAaaa</h1>
<h2>bbBBBBbbbb</h2>
<p>cccCCCCCccc</p>
<h3>ddddddddddddddddddddd</h3>
<h1 id = "CSS_ID">eeeeeeeeeeeeeeeeeeeeee</h1>
<h1 class = "CSS_class">ffffffffffffffffffffffff</h1>


<a href="test2.html" target="_blank">baidu<a/>


</center>
</body>
</html>
原创粉丝点击