我正在使用asp.net和C#。
我有一张图片和三行。我想要这样放置
就像您在下面的URL中看到的那样。
http://www.campaignmonitor.com/gallery/
图像位于左侧,与图像平行,我们可以写文本。
我知道HTML表/ ASP.NET表就像这样
可以实现同样的效果<table>
<tr>
<td>
<img src="#"/>
</td>
<td>
first line <br />
second line <br/>
third line <br />
</td>
</tr>
</table>
但我的问题是我不能使用表格,所以请告诉我如何在不使用表格的情况下实现上述任务。
可以<span>
或<div>
标记可以解决问题。但是我真的很愚蠢。我无法在谷歌搜索我的问题的确切答案..
答案 0 :(得分:1)
使用CSS,您可以将图像浮动到左侧,这将使文本显示在图像的右侧。
例如,请执行以下操作:
<html>
<head><title>Example</title></head>
<body>
<div style="float:left"> <!-- I've floated the div containing the image to the left -->
<img src="http://www.google.com/images/srpr/nav_logo13.png">
</div>
This is text that is to the right of the image.
</body>
</html>