css中font-weight、text-decoration、line-through的用法举例

发布时间:2019-11-11编辑:脚本学堂
本文介绍下,css中有关font-weight、text-decoration、line-through的例子,有需要的朋友参考下。

css中font-weight、text-decoration、line-through的实例代码。
代码如下:

复制代码 代码示例:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>font-weight、text-decoration、line-through的例子-www.jb200.com</title>
<style type="text/css">
a:link {
 font-weight: bold;
 text-decoration: none;
 color: red;
}
a:visited {
 font-weight: bold;
 text-decoration: line-through; 
 color: black;
}
</style>
</head>
<body>
  <p>Consectetuer adipiscing elit:     
    <ul>
    <li><a href=" ">Vivamus purus enim</a></li>
    <li><a href=" ">Sollicitudin vitae</a></li>
    <li><a href=" ">Tincidunt sit amet</a></li>
    <li><a href=" ">Pretium vel, libero</a></li>
    </ul>
<p>脚本学堂,欢迎大家的光临。</p>
</body>
</html>