【发布时间】:2011-10-04 03:23:11
【问题描述】:
您好,我有一个标题,我正在尝试开始工作,我刚刚让菜单正常工作,但现在我无法让大小正常工作。
标题位于 www.g-evo.com/header.php,我想要做的是将灰色缩小一点,使其与徽标更加齐平。但是,我仍然想将那些彩色框保留为白色。
CSS 如下所示:
<style type="text/css">
#header-container {
/* centering for IE */
text-align: center;
}
#menu {
width: 950px;
/* centering for other browsers */
margin: auto;
}
#logo {
width: 950px;
/* undo text-align on container */
text-align: left;
/* centering for other browsers */
margin: auto;
border-style:hidden;
border-width: thick;
}
body {
width: 950px;
/* undo text-align on container */
text-align: center;
/* centering for other browsers */
margin: auto;
}
#headercolor {
background-color:#EEEEEE;
}
</style>
谢谢
【问题讨论】: