배경 상단에 곡선 만들기
제공된 디자인에서 컷아웃은 배경 위에 표시되도록 의도되었습니다. 맞아요. 이를 달성하기 위해 CSS 코드를 수정하는 방법은 다음과 같습니다.
<code class="css">/* Make the box taller to accommodate the curve */ .box { margin-top: 90px; } /* Create the top and bottom pseudo elements */ .box:before, .box:after { bottom: 100%; width: 50%; left: 0; height: 80px; /* Adjust this to control the curve's height*/ 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; } /* Flip the after pseudo element */ .box:after { transform-origin: right; transform: scaleX(-1); }</code>
이 업데이트된 코드에서는:
위 내용은 CSS를 사용하여 배경에 곡선 상단을 만드는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!