Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
对于具有多行的预格式化代码片段,其中一些是缩进的,HTML 元素是<pre>. 但是,当我在表格中使用它时,浏览器会在片段前后插入一个空行,即使我没有将标签放在单独的行上。有没有办法防止这种情况发生?
<pre>
是的。您需要删除浏览器自动应用于元素的默认填充和边距pre。
pre
做这个<pre style="padding:0; margin:0;"></pre>
<pre style="padding:0; margin:0;"></pre>
如果这不能删除所有空格,请添加display: inline;到样式属性。默认情况下它使用display: block;
display: inline;
display: block;