所以我有一个app(h1)的标题,然后标题下面是一个口号(h2)。我希望这两个文本体之间的间距更近。但是代码会自动给h2一个在不调整h1的情况下无法调整的位置。如何相对于类(.mainBanner)而不是h1调整h2。
感谢您的帮助!
.mainBanner {
background-image: url(/Users/omaramin/Documents/Competition/project/mainBanner.png);
background-repeat: no-repeat;
position: fixed;
top: 0;
left: 0;
min-width: 100%;
min-height: 100%;
}
h1 {
color: #ffffff;
text-align: center;
padding-top: 125px;
font-size: 36px;
letter-spacing: 1.5px;
font-weight: lighter;
font-family: Bariol;
}
h2 {
color: #ffffff;
text-align: center;
padding-top: 10px;
letter-spacing: 1px;
font-size: 13px;
font-family: Bariol;
}
答案 0 :(得分:3)
尝试使用负边距。
h2 { margin-top: -5px; }