我不知道如何构建这个简单的布局。
这就是我希望它看起来的样子:
...这就是我到目前为止所拥有的:
如何获得右上角的黄色 div?
HTML:
<div class="gray-wrapper">
<div class="red">centered</div>
<div class="yellow">top right corner</div>
<div class="aqua">100% width</div>
</div>
CSS
.gray-wrapper{
width:500px;
height:200px;
background:gray;
border:4px solid gray;
}
.red{
width:200px;
height:100px;
margin:0 auto;
background:red;
}
.yellow{
width:50px;
height:100px;
float:right;
background:yellow;
}
.aqua{
width:100%;
height:100px;
background:aqua;
}