简单CSS样式表的写法
发布网友
发布时间:2022-04-06 13:22
我来回答
共5个回答
热心网友
时间:2022-04-06 14:51
<html>
<head>
<style type="text/css">
a.top:link {font-family: 宋体} /*链接字体*/
a.top:link {font-weight: normal;} /*设置链接文字中的字符粗细*/
a.top:link {font-size: 12} /*设置链接文字的大小*/
a.top:link {text-decoration: none;} /*设置链接文字没有下划线*/
a.top:hover {text-decoration: underline;} /*鼠标放在链接上时有下划线*/
a.top:link {color: #000000} /*设置链接文字的颜色*/
a.top:visited {color: #000000} /*访问过的链接*/
a.top:hover {color: #B50000} /*鼠标放在链接上字体的颜色*/
a.tj:link {font-family: 宋体}
a.tj:link {font-weight: normal;}
a.tj:link {font-size: 12}
a.tj:link {text-decoration: none;}
a.tj:hover {text-decoration: none;}
a.tj:link {color: #000000}
a.tj:visited {color: #0000ff}
a.tj:hover {background: #FFFFCC}
h1 {font-size:12px}
h1 {font-family: "宋体"}
h1 {font-weight: normal;}
h1 {color: #000000}
h2 {font-size:14px}
h2 {font-family: "宋体"}
h2 {font-weight: normal;}
h2 {color: #000000}
h3 {font-size:24px}
h3 {font-weight: 1;}
h3 {color: #000000}
body {
margin-top: 1px; /*上边距*/
margin-bottom: 1px; /*下边距*/
}
</style>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312"></head>
<body>
<p>Mouse over the links to see them change layout.</p>
<p><b><a href="default.asp" target="_blank" class="top">电脑对怀孕其实没啥影响</a></b></p>
<p><b><a href="default.asp" target="_blank" class="tj">电脑对怀孕其实没啥影响</a></b></p>
<h1>电脑对怀孕其实没啥影响</h1>
<h2>电脑对怀孕其实没啥影响</h2>
<h3>电脑对怀孕其实没啥影响</h3>
</body>
</html>
热心网友
时间:2022-04-06 16:09
一个框架 够简单吧
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>
<style>
*{text-align:center}
.content{margin:0 auto; padding:0; width:1000px; height:auto}
.top{width:998px; height:200px; border:1px solid #ccc; line-height:200px;}
.main{width:1000px; height:500px; line-height:500px;}
.left{width:298px;height:500px; border:1px solid #0FF; float:left;}
.right{width:698px;height:500px; border:1px solid #C60; float:right;}
</style>
<body>
<div class="content">
<div class="top">顶部</div>
<div class="main">
<div class="left">左边</div>
<div class="right">右边</div>
</div>
</div>
</body>
</html>
热心网友
时间:2022-04-06 17:44
你这个问题 太笼统了吧。
热心网友
时间:2022-04-06 19:35
.xxx{width:100px;}
诸如此类的集合
热心网友
时间:2022-04-06 21:43
有什么样的要求吗?单一什么说明都没有 不好揣测啊