请查看此处的网络链接->
HTML
<div id="ma">
<div id="mi">
<div id="r">
<span class="b"></span>
</div>
</div>
</div>
CSS
#ma{width:500px;height:500px;background:red;}
#mi{width:400px;height:350px;background:blue;margin:0 auto;position:relative;}
#r{width:200px;height:200px;background:green;float:right;margin:10px 10px 0 0;position:relative;}
#r .b{width:100px;height:100px;background:yellow;bottom:-100;position:absolute;}
假设黄色方块是一个图像,我希望它显示在绿色框的底部,部分图像在绿色框之外。
我已经在我的网站上测试了上面链接中的 css,黄色框显示在蓝色框下方。但是在 jsfiddle.net,它甚至忽略了底部属性。