我想知道如何在这个小提琴中制作矩形:http: //jsfiddle.net/gztdG/2/向左“溢出”,以便矩形与正方形的右边缘对齐。一个简单的问题,但我不知道如何使用 position: absolute 来实现。提前致谢。这是html:
<div id='square'>
<div id='rectangle' />
</div>
这是CSS:
#square {
height:50px;
width:50px;
background:blue;
margin:auto;
}
#rectangle {
width:200px;
height:20px;
background:red;
position:absolute;
}