我目前正在一个网站上工作,并想知道你是否可以帮我解决问题。我希望h1标题与日期在同一行,但由于某种原因我无法使其工作。
CSS代码:
PasswordAuthentication yes
PermitRootLogin yes
HTML代码:
#content h1 {
font-family: 'Caveat', cursive;
color: #262626;
margin-top: 50px;
margin-left: 100px;
padding-bottom: 10px;
width: 50%;
border-bottom: 1px solid #ddd;
float: left;
}
.date {
float: right;
}
帮助表示赞赏。 :)
答案 0 :(得分:0)
只需将margin: 0
添加到h1
和p
#content h1 {
font-family: 'Caveat', cursive;
color: #262626;
margin-top: 50px;
margin-left: 100px;
padding-bottom: 10px;
width: 50%;
border-bottom: 1px solid #ddd;
float: left;
margin: 0;
}
.date {
float: right;
margin: 0;
}
<强> jsFiddle 强>
答案 1 :(得分:0)
我检查了以下问题的代码
您为h1标签添加了一个css属性,即margin-top: 50px;
根据您应用的浮点数,但您没有为.date类应用margin-top: 50px;
只需添加代码
.date {
margin-top: 50px;
float: right;
}
答案 2 :(得分:-1)