使用CSS將div的底部邊緣向內彎曲
P粉384366923
P粉384366923 2023-10-23 19:55:32
0
2
776

我想用CSS彎曲這個矩形div/背景的底邊,所以結果是這樣的:

有人知道如何實現它嗎?


#
.curved {
  margin: 0 auto;
  height: 400px;
  background: lightblue;
  border-radius:0 0 200px 200px;
}
<div class="container">
  <div class="curved"></div>
</div>


#
P粉384366923
P粉384366923

全部回覆(2)
P粉211600174

檢查一下。我用 :after 偽元素創建了這個。如果背景是純色的話會很有幫助。

.curved {
  margin: 0 auto;
  width: 300px;
  height: 300px;
  background: lightblue;
  position: relative;
}
.curved:after{
  background: white;
  position: absolute;
  content: "";
  left:0;
  right:0;
  bottom: -25px;
  height: 50px;
  border-radius: 50% 50% 0 0;
}
P粉980815259

只需使用 border-radius 並依賴一些溢位。您也可以考慮偽元素以避免額外的標記:

.container {
  margin: 0 auto;
  width: 500px;
  height: 200px;
  background: lightblue;
  position: relative;
  overflow: hidden;
}

.container:after {
  content: "";
  position: absolute;
  height: 80px;
  left: -10%;
  right: -10%;
  border-radius: 50%;
  bottom: -25px;
  background: #fff;
}
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!