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.
如何删除<p>元素前后的换行符?我尝试使用 span 而不是<p>. 但我想要的是一个高度大于我在其中提供的具有特定背景颜色的文本的框。对于跨度,我认为这是不可能的。如果可能,或者如果有其他建议,请帮助我。
<p>
p { display: inline-block; }
这应该有帮助
这对我有用:
p { margin: 0; }
它删除了元素上方和下方的空间。