我有一個小部件,其中不能將包裹在另一個div中。刪除部分邊框
我的問題是如何從標題/標題欄中刪除邊框,但仍然保留在DIV的其餘部分?下面的例子。
僅向.body添加邊框是不可行的,因爲如果最終用戶向小部件div的底部/頂部添加了填充部分,則會導致事件中斷。
<div class="widget">
<div class="header">Header Title</div>
<div class="body">My Content</div>
</div>
.widget {
height: 100px;
width: 130px;
border: 3px solid blue;
position: absolute;
overflow: hidden;
}
.header {
width: 100%;
min-height: 24px;
max-height: 24px;
display: block;
background-color: grey;
color: white;
}
.body {
width: 100%;
height: calc(100% - 24px);
}
http://jsfiddle.net/botwfngv/1/ – Cheery 2014-10-03 18:12:20
謝謝! – 2014-10-03 18:13:35
不幸的是,'overflow:hidden;'應該被移除,否則你不能覆蓋父子的邊界。 – Cheery 2014-10-03 18:15:10