简体   繁体   English

复制样本图像的HTML表

[英]HTML table replicating a sample image

I have been trying all morning to replicate the below however I cannot get the alignment correct, it seems that a row will match the height of the biggest td, I need to replicate this as pixel perfect as possible. 我一直在努力复制下面的内容,但是我无法正确对齐,似乎一行将与最大td的高度匹配,我需要尽可能地复制它。

在此处输入图片说明

Below is my HTML, 以下是我的HTML,

<table cellspacing="0" cellpadding="0" border="0" align="center" style="height: 268px; width: 700px;">  
<thead>  
<tr>  
<th valign="middle" align="center" style="height: 27px;" scope="col">Information</th>  
<th valign="middle" align="center" style="height: 27px;" scope="col">Education &amp; Training</th>  
<th valign="middle" align="center" style="height: 27px;" scope="col">Marketing Services</th>  
<th valign="middle" align="center" style="height: 27px;" scope="col">Digital Media</th>  
<th valign="middle" align="center" style="height: 27px;" scope="col">Entertainment</th>  
<th valign="middle" align="center" style="height: 27px;" scope="col">Business Services</th>  
</tr>  
</thead>  
<tbody>  
<tr>  
<td valign="middle" align="center" style="height: 27px;">Academic</td>
<td valign="middle" align="center" style="height: 27px;">For-profit schools</td>
<td valign="middle" align="center" style="height: 27px;">Agency</td>
<td valign="middle" align="center" style="height: 27px;">Internet</td>
<td valign="middle" align="center" style="height: 27px;">TV and Radio Broadcasting</td>
<td valign="middle" align="center" style="height: 27px;">Business Process Outsourcing</td>
</tr>
<tr>
<td valign="middle" align="center" style="height: 27px;">STM</td>
<td valign="middle" align="center" style="height: 27px;">Educational Technology</td>
<td valign="middle" align="center" style="height: 27px;">Digital</td>
<td valign="middle" align="center" style="height: 27px;">Mobile Distribution</td>
<td valign="middle" align="center" style="height: 27px;">Cinema</td>
<td valign="middle" align="center" style="height: 27px;">B2B Services</td>
</tr>
<tr>
<td valign="middle" align="center" style="height: 27px;">Financial</td>
<td valign="middle" align="center" style="height: 27px;">Educational Services</td>
<td valign="middle" align="center" style="height: 27px;">Market Research</td>
<td valign="middle" align="center" style="height: 27px;">Online Gaming</td>
<td valign="middle" align="center" style="height: 27px;">Film, TV, Music and Sports Content and Rights</td>
<td valign="middle" align="center" style="height: 27px;">SaaS</td>
</tr>
<tr>
<td valign="middle" align="center" style="height: 27px;">Business</td>
<td valign="middle" align="center" style="height: 27px;">Professional Training</td>
<td valign="middle" align="center" style="height: 27px;">Outdoor</td>
<td valign="middle" align="center" style="height: 27px;">Social Media</td>
</tr>
<tr>
<td valign="middle" align="center" style="height: 27px;">Trade</td>
<td valign="middle" align="center" style="height: 27px;">Vocational Training</td>
<td valign="middle" align="center" style="height: 27px;">Public Relations</td>
</tr>
<tr>
<td valign="middle" align="center" style="height: 27px;">Consumer</td>
<td valign="middle" align="center" style="height: 27px;">Sales Promotion</td>
</tr>
<tr>
<td valign="middle" align="center" style="height: 27px;">Professional</td>
<td valign="middle" align="center" style="height: 27px;">Direct Marketing</td>
</tr>
<tr>
<td valign="middle" align="center" style="height: 27px;">Lead Generation</td>
</tr>
<tr>
<td valign="middle" align="center" style="height: 27px;">&nbsp;</td>
<td valign="middle" align="center" style="height: 27px;">&nbsp;</td>
</tr>
</tbody>
</table>

and my CSS, 还有我的CSS

#left table {
    border:0 none;
}

#left th {
    height:43px;
    background:url(images/th_bg.jpg) top left repeat-x;
    font-size:14px;
    color:#fff;
    font-family:"Times", "Times New Roman", "Serif";
}

#left tbody td {
    text-align:center;
    background:#99abb9;
    border-right:1px solid #fff;
    width:105px;
    padding:10px 15px 0px 15px;
    height:17px;
}

Looks like only two rows to me. 对我来说似乎只有两行。 A header row of th tags and a single row of td tags , each with a list of items. th标签的标头行和td标签单行 ,每个标签都有一个项目列表。

You try to make one table-row per entry, but on the picture it looks like there are only two rows. 您尝试为每个条目创建一个表行,但是在图片上看起来只有两行。 One for header and one for data (data seperated by <br /> or with <p>...</p> ). 一个用于标题,另一个用于数据(用<br /><p>...</p>分隔的数据)。

Here is an shortened example (less columns, only basic formatting - you have to add the rest) just to show how it works: 这是一个简化的示例(较少的列,只有基本的格式-您必须添加其余的格式)只是为了展示其工作原理:

<style type='text/css'>
   thead > tr > td {
      text-align:center;
      vertical-align:middle;
      background-color:#777777;
      width:107px;
   }
   tbody > tr > td {
      text-align:center;
      background-color:#99abb9;
   }
</style>

<table cellspacing="2px" border="0">
   <thead>
      <tr>
         <td>Information</td>
         <td>Education &amp; Training</td>
         <td>Marketing Services</td>
      </tr>
   </thead>
   <tbody>
      <tr>
         <td>
            Academic<br /><br />
            STM<br /><br />
            Financial<br /><br />
            Business<br /><br />
            ...
         </td>
         <td>
            For-profit schools<br /><br />
            Educational Technology<br /><br />
            Educational Services<br /><br />
            ...
         </td>
         <td>
            Agency<br /><br />
            Digital<br /><br />
            Market Research<br /><br />
            Outdoor<br /><br />
            Public Relations
         </td>
      </tr>
   </tbody>
</table>

I have made a completely working demo, at http://dcm.net46.net/test/so/so.html . 我已经在http://dcm.net46.net/test/so/so.html上制作了一个完全正常的演示。 To make all the columns the same height, I just filled in the extra space with empty td s. 为了使所有列都具有相同的高度,我只用空的td填充了多余的空间。 To style the columns, I used colgroup and col elements. 为了给列设置样式,我使用了colgroupcol元素。 The rest was pretty easy. 其余的工作非常简单。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM