Border radius on Focus input field

前端 未结 4 2225
盖世英雄少女心
盖世英雄少女心 2021-02-13 17:19

how can we adjust the border radius of the input field focus.

HTML


CSS

.r         


        
4条回答
  •  执笔经年
    2021-02-13 18:11

    Removed the standard outline (which does not accept border-radius) and used a blue box-shadow instead:

    .rest{
      border-radius: 15px;
      border: 1px solid grey;
      padding-left: 8px;
    }
    
    .rest:focus {
      outline: none;
      box-shadow: 0px 0px 2px #0066ff;
    }

    codepen demo

提交回复
热议问题