ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
#### 1.html结构 <div class="parent"> <div></div> <div></div> <div></div> <div></div> </div> * * * * * 用伪类画边线 .parent{ width: 1000px; height: 400px; border-radius: 3px; border:1px solid #333; margin-left: auto; margin-right: auto; } .parent>div{ width: 25%; height: 100%; float: left; position: relative; } .parent>div:not(:last-child)::after{ content: ""; display: block; position: absolute; height: 100%; border-right:1px solid #333; top: 0; right: 0; } * * * * * 用margin-left:-1px; ~~~ .parent{ width: 1000px; height: 400px; border-radius: 3px; border:1px solid #333; margin-left: auto; margin-right: auto; } .parent>div{ width: 25%; height: 100%; float: left; border-left: 1px solid #333; margin-left: -1px; } ~~~