hide input border on focus

87

textarea:focus, input:focus{
    outline: none;
}
<div class="container">
  <div class="row">
    <input class="abc" type="text" id='myinput'/>
  </div>
</div>

<div class="container">
  <div class="row">
    <span>some text here </span>
    <span>some text here</span>
  </div>
</div>

<div class="container newone">
  <div class="row">
    <span>some text here</span>
  </div>
</div>
 Run code snippet
.newone { 
  display:none;
}

Comments

Submit
0 Comments