我有这样的 HTML:
<div style="float: left; font-family: arial; padding-top: 40px; width: 655px; ">
<div style="float: left;">
<img src="http://www.problemio.com/img/big_logo.png" id="above_fold_img" style="border: none;" />
</div>
<div style="float: left; ">
<p>
<h1>mobile business plan, <br />
business ideas, fundraising<br /> and marketing apps
</h1> <!-- font-size: 200%; -->
</p>
</div>
<div style="clear:both;"></div>
它看起来像这样。这是一个测试页面: http: //problemio.com/index_test.php
蓝色 B 应该与文本在同一行。但可能是因为原始图像尺寸非常大,它的尺寸被搞砸了。
这是img的css:
img#above_fold_img
{
width: 30%;
height: 30%;
}
有人知道如何使图像和文本出现在同一行吗?
谢谢!