我有一个边框,但在左下角没有半径

时间:2014-05-06 08:00:05

标签: php html css css3 border

右下角,右上角和左上角都有一个完美的半径,但我的左下角不是"关闭"。

这是我的代码:

.form_edit{
  border: 1px solid rgb(102, 102, 102);
  border-radius: 15px;
  background-color: rgb(238, 238, 238);
}

1 个答案:

答案 0 :(得分:0)

你的代码工作得很好...... 这会影响哪个浏览器?

试一试。

.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;
}