一个CSS样式表

来源:百度知道 编辑:UC知道 时间:2024/05/11 19:16:35
下面有个CSS样式表,哪位可以帮我解读一下。。万分感谢!!!!
body {
background-image: url(mbg_55.gif);
}
body,table {
font-size: 12px;
color: #000000;
}
.input1 {
font-size: 12px;
color: #000000;
}
a.mm {
font-size: 12px;
color: #000000;
text-decoration: none;
}
a.mm:hover {
font-size: 12px;
color: #000000;
text-decoration: underline;
}
a {
font-size: 12px;
color: #000000;
text-decoration: none;
}
a:hover {
font-size: 12px;
color: #000000;
text-decoration: underline;
}
.line18 {
line-height: 18px;
font-size: 12px;
}
.line22{
line-height: 22px;
font-size: 12px;
}
.img1 {
border: 3px solid #B8D0EB;
}

body { 这个body是整个网页的被景图片.
background-image: url(mbg_55.gif);
}
body,table {
font-size: 12px; 这是body和table用同一种样式.字体大小12像素.颜色色
color: #000000;
}
.input1 { 这个样式都可以引用.如<p class=input1> <h1 class=input1>
font-size: 12px;
color: #000000;
}
a.mm { 这里错了吧.应是.mm a 意思是如<p class=mm><a href=#></a></p>这个样式做用于p里面的链接的原始样式.
font-size: 12px;
color: #000000;
text-decoration: none; 它体表字体样式.这是链接没样式.无下划线.
}
a.mm:hover { 这也错了.mm a:hover应是这样的.和上边一样.不过这次是鼠标经过时的效果.
font-size: 12px;
color: #000000;
text-decoration: underline; 链接产生下划线.
}
a { 这是自动应用所有原始链接.除了上边用class外
font-size: 12px;
color: #000000;
text-decoration: none;
}
a:hover {
font-size: 12px;
color: #000000;
text-decoration: underline;
}
.line18 {
line-height: 18px; 设行高为18像素
font-size: 12px;
}
.line22{