你如何从另一个标题移动50px的标题?

时间:2012-12-02 06:13:54

标签: css html position

我知道你可以让我们说左边50个像素的标题。但你可以从另一个标题制作50像素的东西吗?不只是从保证金?与标题2类似,标题1需要50像素。我该怎么做?

2 个答案:

答案 0 :(得分:1)

使它们成为内联块并在第一个上添加50px页边距。

<style>h1, h2 { display: inline-block; margin-right: 50px; }</style>
<h1>my thing</h1>
<h2>my other thing<h2>

请参阅此示例:http://jsfiddle.net/bpR7H/

注意:您需要避免position: absolute才能正常工作,因为绝对定位的元素不会影响其他元素的位置。

答案 1 :(得分:0)

http://jsfiddle.net/w9FHw/

那样的东西?

#rightheading {
    position: relative;
    left: 50px
}