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.
body { width:1024px; height:600px; } #footer { margin-top:800px; }
我的问题是有一种方法可以在父标签正文中设置一些属性,以限制该标签内的子标签(我不希望页脚在正文框模型之外),即使我们设置的值高于父标签正文。
虽然您应该避免在子标签中设置更高的值,但如果是这样,您更有可能希望使用overflow:hidden;who 基本上隐藏任何“超出范围”的内容。
overflow:hidden;
有关示例,请参见此工作FIDDLE。
你试图做的不是一个好的编码实践。在这种情况下,您应该尝试从#footer 本身限制目标元素。这可能会有所帮助