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.
为什么在下面的示例中,红色轮廓仅出现在底部?我已经做了一些更改,但问题仍然存在。看看:http: //jsfiddle.net/ny48t/3/
Outline 被绘制到由 Margin 定义的内部矩形的外部。在这种情况下,这也在元素可以呈现的可见空间之外并且“不在页面”。
添加一个边距(例如,5px),轮廓的剩余部分将变得可见。
因为其他三个面都在窗外。
您需要在它周围留出一个边距,以便可以看到其余的边框。否则浏览器窗口会将其关闭。
margin: 5px;