如何重新调整此图像的大小以适合文本?

时间:2012-03-12 08:28:33

标签: asp.net html css

我有一个图像,我想重新调整它的大小以适合除此之外的文本大小。并且文本应该根据此图像居中显示。

那怎么做?

(抱歉,我无法上传图片,因为我是新用户,我不允许发布图片。)

修改

请查看我正在谈论的HERE

的示例

2 个答案:

答案 0 :(得分:0)

使用动态编程语言,您可以生成以下代码:

<div class="image">
 <img width="350" src="http://placehold.it/350x150" alt="A national flag" />
</div>
<div class="text" style="width:350px;">
 This is the national flag and this is why we are using it.
</div> 
<br class="clear" />  

查看以下工作示例:http://jsfiddle.net/cY22B/

答案 1 :(得分:0)

你应该在css中对它们使用display:table-cell。然后你应该将Text的Vertical Align定义为中间。

http://jsfiddle.net/cY22B/4/