如何减少 table 和 HTML 中的段落之间的 space?

How to reduce space between table and paragraph in HTML?

我正在使用 HTML table 后跟段落,但我发现 table 和段落之间的 space 超出了需要。如何控制(减少)table 和段落之间的 space。

<table border=1><tr><td>col1</td><td>col2</td></tr></table>
<p style="width: 100%; text-align: right;"><button type="button" id="submit-button" style='visibility:hidden;width:1px;height:1px' >Submit</button></p>

上边距:0%

<table border=1><tr><td>col1</td><td>col2</td></tr></table>
<p style=" margin-top:0%;width: 100%; text-align: right;"><button type="button" id="submit-button" style='visibility:hidden;width:1px;height:1px' >Submit</button></p>