企业🤖AI Agent构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
~~~ <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> ~~~