📜  css 焦点边框半径 - CSS 代码示例

📅  最后修改于: 2022-03-11 14:47:39.177000             🧑  作者: Mango

代码示例2
/* the outline is square on focus to change do this*/
.my_input {
  border: 1px solid blue;
  border-radius:3px;
}
.my_input:focus {
  outline: none;
}