input 选中时边框颜色设置css怎么写,不要JS

2024-11-19 08:45:26
推荐回答(4个)
回答1:

input {
 color: #122e29;
 border: 1px solid #005344;
 background-color: #73b9a2;
}
input:focus {
 color: #ed1941;
 border: 1px solid #2468a2;
 background-color: #afdfe4;
}

回答2:

css如下:

input:focus {
  outline-color: green;
}

回答3:



html





回答4:

不借助JS你怎么判定选定和没选中呢?