如何获取标题和按钮/链接内联

时间:2016-08-14 18:10:42

标签: javascript html css html5

我不知道我怎么能得到h1和内联按钮。我已经尝试了一切

    <h1 id="h1">Text</h1>
	<a href="#" id="Btn" class="button">Btn</a>

4 个答案:

答案 0 :(得分:1)

尝试以下方法

&#13;
&#13;
<h1 id="h1" style="float:left;margin:0">H1</h1>
<a style="float:left" href="#" id="Btn" class="button">Btn</a>
&#13;
&#13;
&#13;

答案 1 :(得分:0)

试试这个Css代码:

h1,a{
float:left;
display:inline-block;
}

答案 2 :(得分:0)

如果元素有父级,则只需将display: inline-block添加到父级。如果不是,则必须为每个元素添加display: inline-block

答案 3 :(得分:0)

这很简单:

#h1, #Btn {
    display: inline-block;
    margin: 0;
    vertical-align: middle /* the type of alignment you're looking for */
}