使身体边缘更大但保持站点居中

时间:2014-09-27 05:33:29

标签: html css

我是html和css的新手。我想知道如何让我的身体边距更大,以便其他标题可以与我的第一个标题放在同一行。

<DOCTYPE!>
<html>
<head>
<link rel='stylesheet' href='style.css'/>

</head>
<body>
<div class="container">
<h1>
This tag is for making a header.
<h1>
<h1 style="margin-top: -60px; margin-left: 500px;">
Second h1 tag that i am putting in
</h1>
</div>
</html>

的CSS:

.container{
    width: 700px;
    margin:0px auto;
}

1 个答案:

答案 0 :(得分:1)

<h1 style="display:inline-block;">
This tag is for making a header.
<h1>
<h1 style="display:inline-block;">
Second h1 tag that i am putting in
</h1>

不设置边距display:inline-block会使h1在一行中