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.
我不确定如何最好地解释这一点,但我会尽力而为。我有 Drupal 主题,在主要内容/帖子 DIV 上有阴影边框和文本填充。但是,在某些页面上,我想覆盖文本填充,以便 DIV 标记可以充满内容 DIV。
我可以通过删除文本填充并在每个页面上手动添加它来实现相同的效果,但这将是很多工作;特别是考虑到我只需要在几页上使用这个“特殊” DIV。
我希望这是有道理的 - 可能有更好的方法来解释它,但这就是为什么我自己找不到答案!提前致谢
对子级使用等于父级填充的负边距。IE:
div.parent { padding: 0 10px; } div.child { margin: 0 -10px; }