CSS如何调整DIV顶部边距
作者: wenmp424
Email: 1871663623@qq.com
详细内容:
想把网站LOGO往下调,同时把导航往上调,跟背景图对齐,里面那一句是添加上边距的呢,该怎么设置呢?
联系我时,请说是在学做网站论坛看到的,谢谢!
回复:修改网站DIV层的位置与距离,可以通过修改DIV层的内外边距来控制。在学做网站论坛的DIV+CSS课程中有讲到如何修改网站的边距。可以通过修改如下的CSS属性来达到自己的要求。
.header {
padding-top:8px;
height: 130px;
}
.header a.logo {
float: left;
width: 450px;
height: 68px;
background: url(logo.gif) center no-repeat;
text-indent: -999px;
}
.header .add {
width: 280px;
height: 90px;
overflow: hidden;
float: right;
}
span.mouse {
float: right;
display: inline;
margin: 20px 30px auto auto;
}
padding-top:8px;
height: 130px;
}
.header a.logo {
float: left;
width: 450px;
height: 68px;
background: url(logo.gif) center no-repeat;
text-indent: -999px;
}
.header .add {
width: 280px;
height: 90px;
overflow: hidden;
float: right;
}
span.mouse {
float: right;
display: inline;
margin: 20px 30px auto auto;
}