I have the following code. I have a search that I want to focus on the page. But for some reason it does not work. Search
<body>
<div>
<h1>ADD BUTTON HERE</h1>
</div>
<div class="box">
<input type="search" id="search" placeholder="Search" />
</div>
<hr>
</body>
<html>
I also have the following css
.box{
width: 100%;
}
#search {
margin: 0 auto;
display: inline-block;
}
I read a lot of posts about this and they all do margin: 0 auto;, but it just doesn't work. Is something missing here?
source
share