注册 登录
编程论坛 ASP.NET技术论坛

哪位大哥帮我解释一下这个是什么意思

huye1985 发布于 2008-03-19 11:21, 1039 次点击
style type="text/css">
<!--
body {
    margin-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
}
.style1 {
    color: #bdc3cc;
    font-size: 9px;
    font-family: tahoma;
    font-weight: bold;
}
.style2 {
    color: #696969;
    font-size: 11px;
    font-family: tahoma;
    font-weight: bold;
}
.style3 {
    color: #696969;
    font-size: 10px;
    font-family: tahoma;
}
.style4 {
    color: #2e62b1;
    font-weight: bold;
}
.style5 {color: #ff4700}
.style6 {
    color: #666666;
    font-size: 9px;
    font-family: tahoma;
}
.style7 {font-size: 12px}
.style8 {color: #4f576a}
-->
</style></head>
2 回复
#2
jalonlovesja2008-03-19 11:33
这是CSS样式了,专门来管理界面统一的
  你把英文翻译成汉字就知道了
#3
beniao2008-03-19 13:53
回复 1# 的帖子
body {
    margin-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
}
这句代表 页面到 上下左右四边的距离为0;
.style1 {
    color: #bdc3cc;
    font-size: 9px;
    font-family: tahoma;
    font-weight: bold;
}
这句为 字体颜色为#bdc3cc,字体大小为9px,字体为tahoma,字体样式为bold(加粗)

自己去学习下CSS吧  这东西很简单的.
1