我在尝试将主动锚定标签放在主要内容区域边框上时遇到了麻烦,我尝试添加位置:相对等但是没有任何喜悦,标签也必须放在ul边框上,所以我认为我可能设置错了,有人能给我一些关于如何正确实现这种效果的指示吗?
我的链接http://jsfiddle.net/eBnUt/1/
由于 凯尔
答案 0 :(得分:1)
您只需将margin-top: -2px;
添加到.boxBody
即可。实例:http://jsfiddle.net/tw16/eBnUt/2/
.boxBody{
border: 2px solid #343434;
background: #fff;
/*width: 100%;*/
min-height: 70px;
padding: 20px;
margin-top: -2px; /* add this */
-webkit-border-bottom-right-radius: 10px;
-webkit-border-bottom-left-radius: 10px;
-moz-border-radius-bottomright: 10px;
-moz-border-radius-bottomleft: 10px;
border-bottom-right-radius: 10px;
border-bottom-left-radius: 10px;
}