2017-10-21 6 views
-2

css에서만이 바닥 글을 얻을 수 있습니까? enter image description hereCss curvy footer

감사

+1

읽어 보시기 바랍니다 [질문]. – Xufox

답변

2

이 시도하십시오

.container { 
 
    background: yellow; 
 
    height: 180px; 
 
    width: 400px; 
 
} 
 

 
.box { 
 
    width:400px; 
 
    height:80px; 
 
    background-color: white; 
 
    border:1px solid white; 
 
    border-width:0 0 13px 0; 
 
    margin:1rem auto; 
 
    -webkit-border-radius:0% 0% 50% 50%/0% 0% 50% 50%; 
 
    -moz-border-radius:0% 0% 50% 50%/0% 0% 50% 50%; 
 
    border-radius:0% 0% 50% 50%/0% 0% 50% 50%; 
 
}
<div class="container"><div class="box"></div></div>