🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
~~~ <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> ~~~