<div class="row">
some content
<div class="info-box">
some other content
</div>
</div>
.row {
float: left;
margin-bottom: 1.5%;
border: 1px solid #e3e3e3;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-ms-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px;
background-color: rgb(250, 250, 250);
width: 685px;
-webkit-box-shadow:rgb(153,153,153) 0px 1px 2px 0px;
-moz-box-shadow:rgb(153,153,153) 0px 1px 2px 0px;
-ms-box-shadow:rgb(153,153,153) 0px 1px 2px 0px;
-o-border-box-shadow:rgb(153,153,153) 0px 1px 2px 0px;
box-shadow:rgb(153,153,153) 0px 1px 2px 0px;
}
.row:hover {
background-color: rgb(240, 245, 245);
-moz-box-shadow: inset 0 0 5px #4d4d4d;
-webkit-box-shadow: inset 0 0 5px #4d4d4d;
box-shadow: inset 0 0 5px #4d4d4d;
}
.info-box {
position: relative;
border-left: 1px solid #e3e3e3;
padding: 15px;
width: 170px;
font-size: 0.93em;
color: #363636;
float: left;
}
好吧,我有這個信息框內的行。在.row:hover之後,我創建了一個內在的影子。當您將鼠標懸停在行上時,信息框的左側邊框似乎顯示在陰影的頂部。如何在CSS邊框上設置陰影?
我的問題是如果你可以使陰影在邊界之上。提前致謝。
注意:z-index不適用於我。
請提供最小的HTML代碼和/或jsfiddle – FelipeAls 2013-02-19 21:04:10
我已經添加了html代碼。感謝提醒。 – tipsywacky 2013-02-19 21:07:10
'border-radius'屬性不需要這麼多的前綴。檢查兼容性表[caniuse](http://caniuse.com/#search=border-radius)(「顯示所有版本」)。 '-moz-'用於Fx 3.6(可能在一些公司和Linux發行版中使用,不是更多),Saf 4.0,iOS 3.2和Android 2.1的'-webkit-'。 MS和Opera從未使用過這個的前綴 – FelipeAls 2013-02-20 04:12:36