CSS 中的部分边框没有背景重叠
我有两个带边框的 div,如何仅删除两个 div 接触的边框,如下图所示?但如果没有背景重叠,我的意思是这里背景必须是透明的。 问题听起来像这个 CSS 中的部分边框 但是!没有背景颜色重叠。而且它的液体尺寸,意味着不固定。
I have two divs with borders, how do I remove only the border where the 2 divs touch like the picture below shows? But without background overlapping, I mean here background must be transparent.
Question sounds seam like this one Partial Border in CSS but!! without background color overlapping. and also it's liquid dimension, mean not fixed.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的
div
都是静态高度,您可以使用伪元素来伪造边框:这是小提琴: http://jsfiddle.net/FrKZy/
您可以使用 Javascript 使其与动态高度一起工作。
警告:这在 IE7 或更低版本中不起作用。
If your
div
s are both static height, you can use a pseudo element to fake the border:Here's the fiddle: http://jsfiddle.net/FrKZy/
You could probably make it work with dynamic heights using Javascript.
Warning: this won't work in IE7 or under.