문제

Bottom right, top right and left they all have a perfect radius, but my bottom left one is not "closing".

Here my code:

.form_edit{
  border: 1px solid rgb(102, 102, 102);
  border-radius: 15px;
  background-color: rgb(238, 238, 238);
}
도움이 되었습니까?

해결책

Your code works fine... Which browser does this get affected in?

Give this a try.

.form_edit {
border: 1px solid rgb(102, 102, 102);
background-color: rgb(238, 238, 238);
-moz-border-radius: 15px;
-webkit-border-radius: 15px;
-khtml-border-radius: 15px;
border-radius: 15px;
}
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top