在下面的html/css代碼中,前兩個單元格的左邊框用作範圍括號。是否有可能使邊界如下圖所示出現?單元格邊框擴展超出
.Row {
display: table;
width: 100%;
table-layout: fixed;
border-spacing: 5px;
}
.Column {
display: table-cell;
border-style: solid;
}
.Column:nth-child(1) {
width:20%;
border-left: none;
border-top: none;
border-bottom: none;
}
.Column:nth-child(2) {
width:50%;
border-left: none;
border-top: none;
border-bottom: none;
text-align: center;
}
.Column:nth-child(3) {
width:30%;
border-left: none;
border-right: none;
border-top: none;
border-bottom: none;
}
<div class="Row">
<div class="Column"></div>
<div class="Column">Accepted Range</div>
<div class="Column"></div>
</div>
預計你至少嘗試爲自己的代碼這一點。堆棧溢出不是代碼寫入服務。我建議你做一些[**額外的研究**](http://meta.stackoverflow.com/questions/261592/how-much-research-effort-is-expected-of-stack-overflow-users) ,無論是通過谷歌或通過搜索,嘗試和。如果您仍然遇到麻煩,請返回**您的代碼**並解釋您所嘗試的內容。 –
@LGSon對不起,但Iaconis Simone的答案更適合我的情況。 –
沒問題,只是想讓你選擇一個答案,最好的解決了你的問題 – LGSon