[紧急]在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>