是否可以創建與圖像邊框類似的邊框?只需使用CSS邊框屬性。最終結果將是沒有角落的盒子。我不想添加額外的html元素。我想只給每個li元素添加css邊框信息。CSS邊框 - 不帶邊角的框
假設這是一個UL列表。
是否可以創建與圖像邊框類似的邊框?只需使用CSS邊框屬性。最終結果將是沒有角落的盒子。我不想添加額外的html元素。我想只給每個li元素添加css邊框信息。CSS邊框 - 不帶邊角的框
假設這是一個UL列表。
這是我嘗試與使用:before
和:after
僞元素和一些CSS3選擇
li{
position: relative;
}
/* Add bottom border for all boxes except the last two */
li:not(:nth-last-child(2)):not(:last-child):after{
content: '';
position: absolute;
bottom: 0;
width: 50%;
left: 25%;
height: 2px;
background-color: #ccc;
}
/* Add right border for all odd indexed boxes (1,3,5...) */
li:nth-child(2n+1):before{
content: '';
position: absolute;
right: 0;
height: 50%;
top: 25%;
width: 2px;
background-color: #ccc;
}
你也可以用模擬的邊界box-shadow
,消除滿足僞元素的需求,但只有當你的盒子尺寸固定時,這種方法才適用,因爲你不能有響應陰影。
li:not(:nth-last-child(2)):not(:last-child){
box-shadow: 0 53px 9px -56px #000;
}
li:not(:nth-last-child(2)):not(:last-child):nth-child(2n+1){
box-shadow: 0 53px 9px -56px #000, 53px 0px 9px -56px #000;
}
li:nth-child(2n+1){
box-shadow: 53px 0px 9px -56px #000;
}
謝謝,這個作品完美! – jmontenegro 2014-08-27 22:46:41
你將不得不玩弄一些CSS技巧,但我認爲有些事情與:after
可能做的伎倆......
下面列出了產品的樣品例子具有一半尺寸的下邊框:
ul li:after {
content: "";
border-bottom: 1px solid red;
display: block;
width: 50%;
height: 100%;
margin-left: 25%;
}
感謝您的快速回復。這適用於底部邊框。但是我無法讓它在正確的邊界上工作。 – jmontenegro 2014-08-27 22:46:06
這將是相同的,只是設置'寬度:100%;身高:50%;保證金最高:25%;'並刪除'保證金左' – LcSalazar 2014-08-27 22:47:49
明白了。謝謝! – jmontenegro 2014-08-27 22:49:52
查看[這個非常相似的問題](http://stackoverflow.com/questions/8835142/any-way-to-declare-a-size-partial-border-to-a-box)的潛在答案。 – GentlePurpleRain 2014-08-27 22:19:05