doujingya1166 2012-09-27 08:16
浏览 42

在PHP代码的输出中添加行空间

I have php code to print two tables continuously. But border of first table coincide with the border of second table. How can I give space between them. echo " " , echo (" "); echo (""); are not helping.

  • 写回答

3条回答 默认 最新

  • douluo2930 2012-09-27 08:17
    关注

    You should use css with the second table (or first)

    .yourTable {margin-top: 10px;}
    

    Or the quick, dirty and the wrong solution: just print a <p> between the tables

    评论

报告相同问题?