本文介绍了[紧急]在html内容编辑器中对齐图像和文本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我需要按照以下格式对齐图像和文本
i need to align image and text in the below format
图 你叫什么名字?ABCCC
Img whats your name?ABCCC
GHH 您的最爱是什么?欢迎您
GHH Whats your fav?Hello welcome
学校:L 您最喜欢什么?你好
school:L whats your fav? hello
年:2018 您最喜欢什么?你好
year:2018 whats your fav?hello
闪电战
推荐答案
您可以将值包含在html表中,这将使这些值对齐.
You can include the values in html table which will align the values.
<table style="width:100%">
<tr>
<td>Img</td>
<td>whats your name?</td>
<td>ABCCC</td>
</tr>
<tr>
<td>GHH</td>
<td>Whats your fav?</td>
<td>Hello welcome</td>
</tr>
<tr>
<td>school:L</td>
<td>whats your fav?</td>
<td>hello</td>
</tr>
<tr>
<td>year:2018</td>
<td>whats your fav?</td>
<td>hello</td>
</tr>
</table>
这篇关于[紧急]在html内容编辑器中对齐图像和文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!