🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
~~~ <title>Document</title> <style> /* 子元素设置绝对定位,它不会继承父元素的width */ .parent{ width:300px; height:150px; background: red; position: relative; } .child{ position: absolute; height:50px; background: yellow; } </style> </head> <body> <div class="parent"> <div class="child"> </div> </div> ~~~