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.
我有一组 iFrame,实际上是来自 Facebook、Google 等的社交分享按钮,我想使用 CSS 在它们之间放置空间,而不是在第一个 iFrame 之前或最后一个 iFrame 之后添加空间。有什么方法可以实现“margin-inner”效果吗?
您可以应用全局边距并简单地重置最后一个(或第一个)
iframe { margin-left:20px; } iframe:first-child { margin-left:0; }