我希望将“外”圆角添加到选定的侧边栏项目,以使该项目很好地“倾注”到内容中。
在下面的示例中,我希望.top
具有灰色背景的圆形右下角,以及.bottom
. 你怎么看?
我正在使用 Twitter Bootstrap 和 LESS,如果这样更容易的话。
jsfiddle:http: //jsfiddle.net/3YXb2/
转这个:
进入这个:
标记:
<div class="wrapper">
<div class="sidebar">
<div class="top">
<p>Top</p>
</div>
<div class="middle">
<p>Middle</p>
</div>
<div class="bottom">
<p>Bottom</p>
</div>
</div>
<div class="container">
<p>Content</p>
</div>
</div>
CSS:
body {
margin:10px;
}
div {
margin:0;
margin-right:-4px;
padding:0;
display:inline-block;
vertical-align:middle;
}
.wrapper {
width:100%;
display:block;
border:1px solid;
}
.container {
background-color:gray;
width:70%;
height:300px;
}
.sidebar {
background-color:white;
width:30%;
height:300px;
}
.middle {
background-color:gray;
}
.top,.middle,.bottom {
width:100%;
height:100px;
display:block;
}
p {
padding:40px 0 0;
margin:0;
text-align:center;
}