百度空间的标头标题的颜色是CSS的哪一项?

来源:百度知道 编辑:UC知道 时间:2024/05/27 03:37:19
超级紧急!
快点告诉我饿~~~!!!
还有就是标头标题的字体如何调整?

标题
#header div.tit{top:5px;left:20px;line-height:60px;font-size:60px;font-family:隶书}
#header div.tit a.titlink{color:#813533;text-decoration:none}
#header div.tit a.titlink:visited{color:#813533;text-decoration:none}
#header div.tit a.titlink:hover{color:#FFFFFF;text-decoration:none}
#header div.desc{top:27px;left:320px;color:#813533;font-size:16px}
说明:
#header div.tit{} 这是标题的设置
#header div.tit a.titlink{} 这是标题超链接的设置
#header div.tit a.titlink:visited{} 这是标题超链接已经被访问过的设置
#header div.tit a.titlink:hover{} 这是当鼠标移动到标题超链接上时显示的属性
#header div.desc{} 这是空间标题后面的简介的内容设置
属性和详细参数
top:5px 距离模版顶部的间隔距离为5px
left:20px 距离模版左边的间隔距离为20px
line-height:60px 设置总高度为60px
font-size:60px 设置字体大小为60px,这个不能设置的比的line-height大,不然标题字体的一部分会被遮掉的
font-family:隶书 设置字体的型号
color:#813533 设置字体的颜色代码为#813533,这里也可以写颜色的英文名,比如black,white,red,green等
text-decor