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

📅  最后修改于: 2022-03-11 14:47:49.808000             🧑  作者: 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;
}