我有一个问题,我在这个文本周围有空间,我无法摆脱。我不能将全局填充:0 或边距:0 应用于所有 div。我的 div 是页面的一部分,我想单独删除 div 周围的额外空间,我也无法将 padding:0 或 margin:0 应用于正文。
<html>
<body>
<div class="topcont" id="topcont" style="display: block;padding:0px;margin:0px">
<div id="dragcont" style="display: block;padding:0px;margin:0px">
<div style="padding:0px;margin:0px; text-align: center; font-size: 18px; font-weight: bold; font-family: Helvetica Neue;">
Drop up to 5 photos here
</div>
<div style="padding:0px;margin:0px; font-size: 18px; font-family: Helvetica Neue; border: 0px none; height: 18px; text-align: center;">
Or
</div>
</div>
<div style="padding:0px;margin:0px;color:#333; text-align:center; font-size:14px;font-family:Helvetica Neue">
to add them as attachments
</div>
</div>
</body>
</html>
我不知道为什么我在给定文本上方获得空间。