How to remove the blue rectangle when element is focused? I've seen similar questions but those question link to an external site. My question includes a snippet that can be tested on SO.
Here is what I get when text area is focused:
Here is what I want when text area is focused:
Here is the code I have so far:
input:focus, textarea:focus {
outline: none;
}
#textarea {
position:absolute;
top:10px;
left:10px;
right:10px;
width:calc(100% - 20px);
height:160px;
display:inline-block;
margin-top:-0.2em;
}
<textarea id="textarea">yo</textarea>
I have already looked at this question.
I have also looked at this question.