如何创建包含表格的文章?

时间:2018-01-10 07:47:07

标签: html css html-table grid-layout

我正在处理一个html新闻通讯,因为我只能使用表格尽可能地响应,我偶然发现了一些问题。

我正在从RSS Feed加载文章并显示它(左图像,右图标题和右图摘要。)它与css完全正常,但现在使用表格似乎不可能; /多数民众赞成我有多远。

一开始看起来不错,但是当标题超过1行时,它的图像也会进一步移动。



<table style="font-family: Helvetica,arial, sans-serif;">
 <col width="130">
 <col width="250">
  <tr style="vertical-align:top;">
    <th valign="right" style="text-align:left; color:white;">Überschrift</th>
	<th valign="right" style="text-align:left;">
	<!--#html name="title" #-->
	Im the Title
	<!--#/html#-->
	</th>
	</tr>
	<tr>
	<td> 
	<!--#image name="image" #-->
	<img src="" style="width:300px; height:300px; object-fit:cover;">
	<!--#/image#-->
	</td>
	<td valign="top" style="height: 100px; font-size: 13px; color: #333333; line-height: 20px; ">
	<!--#html name="description" #-->
	Im a Summary
	<!--#/html#-->
	</td>
  </tr>
</table>
&#13;
&#13;
&#13;

0 个答案:

没有答案