HTML Divs制作东西下降?

时间:2011-08-11 14:36:03

标签: html

编辑:修复我改变了

这是我的代码

Account Type: <div id="accounttype" class=inline-block"><strong><?=$_SESSION['accounttype']?></strong></div>

现在在我的网站上显示如下

account type:
personal

但没有div,就像这样显示

account type: personal

我怎么能用这样的div节目制作呢

account type: personal

3 个答案:

答案 0 :(得分:0)

尝试:

Account Type: <div id="accounttype" style="display:inline-block"><strong><?=$_SESSION['accounttype']?></strong></div>

或更恰当地说:

Account Type: <span id="accounttype"><strong><?=$_SESSION['accounttype']?></strong></span>

答案 1 :(得分:0)

使用style =“float:left”

将div Account Type:换行

答案 2 :(得分:0)

试试这个; Account Type: <div id="accounttype" class="inline-block"><strong><?=$_SESSION['accounttype']?></strong></div

只是你应该使用“课后=