Question

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);
}
Was it helpful?

Solution

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;
}
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top