gpt4 book ai didi

html - CSS 将屏幕分成 4 个相等的部分,它们之间有边框

转载 作者:太空宇宙 更新时间:2023-11-03 21:40:34 24 4
gpt4 key购买 nike

我目前有一个代码可以将屏幕分成 4 个相等的部分并且可以正常工作,但我还想要一条水平和垂直穿过屏幕的 1px 线。有人知道如何实现它吗?

CSS:

#NW { position:fixed; width:50%; height:50%; top:0;   left:0;   background:orange  }
#NE { position:fixed; width:50%; height:50%; top:0; left:50%; background:blue }
#SW { position:fixed; width:50%; height:50%; top:50%; left:0; background:green }
#SE { position:fixed; width:50%; height:50%; top:50%; left:50%; background:red }

html:

<div id="NW"></div>
<div id="NE"></div>
<div id="SW"></div>
<div id="SE"></div>

谢谢!

最佳答案

添加:

#SE, #SW {
border-top:1px solid white;
}
#NE, #SE {
border-left:1px solid white;
}

jsFiddle example

关于html - CSS 将屏幕分成 4 个相等的部分,它们之间有边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23838094/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com