我有这段代码:
<div style="float: left">
<div style="width: 150px; background-color: red">logo</div>
<h1 style="width: 250px; background-color: green" >long slogan</h1>
</div>
<div>fb like and g+ buttons</div>
有没有办法将foobar3放在绿色div上面?
注意:我想使用此代码订单(徽标&gt;长口号&gt;社交),因为我想在手机和平板电脑中显示徽标下方的标语,这是我的目标,所以也许你可以告诉我任何其他工作。
答案 0 :(得分:0)
如果您想要订单徽标&gt;长口号&gt;社交,然后这里是代码
<div style="float: left">
<div style="width: 150px; background-color: red">logo</div>
<h1 style="width: 250px; background-color: green" >long slogan</h1>
</div>
<div style="clear:both"></div>
<div>fb like and g+ buttons</div>