html / css:如何在单行中心“标题”并在右键上

时间:2011-10-24 02:25:06

标签: html css

这是我的html:

<div id="top">
    <span id="title">Some Title</span>
    <span id="buttons"><button>Bla</button><button>Foo</button></span>
</div>

用于居中#title并在右侧拥有#buttons的CSS是什么?

2 个答案:

答案 0 :(得分:5)

#title设为display:block; margin:auto;

#top设为position:relative;position:absolute;

#buttons设为position:absolute; top:0; right:0;

答案 1 :(得分:0)

这可能是您的问题的CSS。看看这个。

#top
{
  text-align:center;
}

#buttons
{
float:right;
}