我有一個光滑的盒子陰影有一個使用「邊框技巧」(取自this stackoverflow問題)創建的三角形的div。我想在三角形上也有箱形陰影。由於它是用邊界製作的,所以這可能是不可能的,但是你是否知道這個問題的其他方法/相對優雅的解決方法?中心三角底部Div與盒子陰影
下面的代碼片段是我的代碼的當前版本,沒有三角陰影。
.hero {
z-index: 1;
text-align: center;
padding-top: 6%;
position: relative;
background-color: red;
height: 320px !important;
width: 100% !important;
box-shadow: 0px 3px 4px green;
}
.hero:after {
content: '';
position: absolute;
top: 100%;
left: 50%;
margin-left: -50px;
width: 0;
height: 0;
border-top: solid 50px red;
border-left: solid 50px transparent;
border-right: solid 50px transparent;
}
<div class="hero"></div>
在此先感謝;)
Picture of the Layout right now, with the missing shadow around the triangle
https://codepen.io/ryanmcnz/pen/JDLhu – CBroe
謝謝,這對我有用。但是,當我調整窗口的大小時,大格子的盒子陰影有時會在三角形中畫出一條直線,任何想法如何解決這個問題? –
不知道這是否只是由Chrome f12「響應式」工具引起的,因爲手動調整窗口大小時不會發生這種情況 –