去掉html表格之table间的空隙,mail table 布局

2020-11-17 09:46:41

我们现在估计用table布局最多的地方也就是发送邮件的服务,用来布局邮件布局了。

这个时候我们需要吧table的间隙变成0。

<html>
 <head >
  <title > 边线合并</title>
  <style type="text/css">
   body {
    text-align: center;
   }
   table {
     border-collapse:collapse;
    border:1px solid black;
   }
   td {
     border:1px solid black;
   }
  </style>
 </head>
 <body >
  <table>
   <tr >
    <td >fdsafdsa</td>
    <td >fdsafdsa</td>
    <td >fdsafdsa</td>
   </tr>
   <tr >
    <td >fdsafdsa</td>
    <td >fdsafdsa</td>
    <td >fdsafdsa</td>
   </tr>
  </table>
 </body>

</html>


  • 2021-01-15 13:06:08

    监控 MongoDB -

    随着MongoDB中保存的数据越来越多,对MongoDB服务状态的监控也越来越重要,经常关注服务是否健康,才能防止故障以及优化。

  • 2021-01-15 13:30:21

    MongoDb web 用户界面

    MongoDB 的 Web 界面访问端口比服务的端口多1000。 如果你的MongoDB运行端口使用默认的27017,你可以在端口号为28017访问web用户界面,即地址为:http://localhost:28017。

  • 2021-01-16 09:31:14

    Xcode两种引入图片的方法

    如果是纯代码,图片名需要手动添加@2x,@3x等倍数标识,且需要指明后缀.png,.jpg;IB添加图片的话只需要指明后缀就好,不用添加倍数标识。

  • 2021-01-16 09:39:32

    iOS 更改状态栏、导航栏颜色,电池颜色

    注意事项,两种方法设置View controller-based status bar appearance 的值不一样,并且如果你的plist里面没有View controller-based status bar appearance,你需要新建一个。然后就可以成功了。