NIUCLOUD是一款SaaS管理后台框架多应用插件+云编译。上千名开发者、服务商正在积极拥抱开发者生态。欢迎开发者们免费入驻。一起助力发展! 广告
#### 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; } ~~~