在一个div的右下角再添加一个div的方法
想完成如下效果:
代码如下:
<div id="header"> <div id="logo"> </div> <div id="note"> <p>右下角的内容</p> </div> </div>
css代码:
#header { height: 100px; width: 1600px; background-color: saddlebrown; position:relative; } #header #note{ display: inline-block; height: 50px; width: 800px; background-color: black; position: absolute; right: 0px; bottom: 0px; }
父对象相对定位,子对象以父对象为参考点绝对定位;
外层的div设置为相对定位,内层的div设置为绝对定位;
纸上得来终觉浅,绝知此事要躬行!