Even after trying to use "outline: 0", nothing seems to change.
#input_field {
outline: 0;
width: fit-content;
margin: auto;
margin-top: 20%;
border-radius: 30px;
border: 2px solid turquoise;
padding: 6px;
}
<div id="input_field">
<input type="text" name="q" size="50">
</div>
I still require the outline for other inputs.
UPDATE:
.lucky_pos, .button_search_pos{
text-align: center;
padding:1px;
margin: 0;
flex-direction: row;
}
As I only want the outline to be applied to #input_field and not others, here is a separate .css for the other elements. Thank you in advance!