帶有偽元素的頂部彎曲背景
要透過頂部微妙的彎曲切口來增強背景影像,請利用CSS 偽元素的功能元素。挑戰在於正確定位切口,使其在所需位置與背景重疊。透過修改原來的程式碼,可以實現這樣的效果:
<code class="css">.box { margin-top: 90px; width: 200px; height: 100px; background: white; position: relative; } .box:before, .box:after { content: ""; position: absolute; bottom: 100%; width: 50%; left: 0; height: 80px; background: radial-gradient(50% 100% at bottom left, #fff 98%, #0000) top, radial-gradient(50% 100% at top right, #0000 98%, #fff) bottom; background-size: 100% 50%; background-repeat: no-repeat; } .box:after { transform-origin: right; transform: scaleX(-1); } body { background: pink; }</code>
以上是如何用CSS偽元素建立頂弧背景?的詳細內容。更多資訊請關注PHP中文網其他相關文章!