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