去掉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>


  • 2017-02-24 16:53:58

    PHP 中的Closure

    Closure,匿名函数,又称为Anonymous functions,是php5.3的时候引入的。匿名函数就是没有定义名字的函数。这点牢牢记住就能理解匿名函数的定义了。

  • 2017-03-02 09:45:27

    动态加载js和css

    开发过程中经常需要动态加载js和css,今天特意总结了一下常用的方法。