多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
~~~ <title>Document</title> <style> /* 兄弟元素之间:margin-bottom和margin-top重合,如果一个值较大,则取最大值。如一样,取中间值 */ .one{ width:100px; height:100px; background: red; margin-bottom: 100px; } .two{ width:100px; height:100px; background: yellow; margin-top:120px; } </style> </head> <body> <div class="one"> </div> <div class="two"> </div> ~~~