电子邮件的可滚动表(没有div)

时间:2015-12-10 10:15:18

标签: html css email html-email

是否可以创建一个垂直可滚动内容的表格(表格为600x600)?我知道的唯一方法是使用电子邮件不可能使用的div'目的。

2 个答案:

答案 0 :(得分:1)

你可以通过使用css实现上述。通过提到这个你可以实现结果overflow-Y:scroll(用于verticle滚动条)



table{
  overflow-Y:scroll;
  height:600px;
  }

<table>
  <tr>
  <th>Name</th>
  <th>Age</th>
  <th>EMail</th>
  </tr>
 </table>
&#13;
&#13;
&#13;

答案 1 :(得分:0)

我试图从Java代码生成动态表,添加此行代码使该表在Outlook电子邮件客户端的电子邮件正文内可滚动。

嵌入式HTML如下:<div style= 'width:800px; height:400px; overflow:scroll; position:relative;'>

java代码如下:

body.append("<div  style= 'width:800px; height:400px; overflow:scroll; position:relative;'>");
body.append("<table border='1' cellpadding='5' cellspacing='0'>");