-1
I created a form and while typing a blue x appears at the end, how do you remove it? follow html and css:
#formSearch {
background-color: #fffafa;
border: 1px solid black;
min-width: 200px;
}
#formSearchButton {
width: 25px;
height: 25px;
border-radius: 50%;
background-color: rgba(red, green, blue, 100%);
border: 0;
margin-left: 30px;
padding: 1px 1px 1px 1px;
}
#formSearchButton i {
color: black;
<form class="form-inline ml-auto">
<input class="form-control form-control-sm" type="search" placeholder="Search on IMDb" id="formSearch" >
<button class="btn btn-sm" type="button" id="formSearchButton" >
<i class="fa fa-search"></i>
</button>
</form>
This is not from bootstrap, is from the user-agent of the browser itself and is there to improve usability, in practice when removing this you are harming the user
– hugocsl
why withdraw, what reason
– novic
For aesthetic reasons, I intend to put the search button inside the form exactly where appears this 'x'
– Cândido Ferreira