How do I get the the texts in the div id="tools" to be centered an evenly spaced in the div I created to be a nav bar?
Here is my CSS and HTML is the second
#learn {
display: inline;
background-color: white;
font-size: 1.1em;
}
#sign {
display: inline;
background-color: white;
font-size: 1.1em;
}
#find {
display: inline;
background-color: white;
font-size: 1.1em;
}
#about {
display: inline;
background-color: white;
font-size: 1.1em;
}
.toolnav {
height: 50px;
width: 1000px;
background-color: white;
border: 2px deepskyblue solid;
border-radius: 15px;
margin: auto;
line-height: 50px;
text-align:center;
}
<div class="toolnav">
<div id="learn">Learn More</div>
<div id="sign">Sign Up</div>
<div id="find">Find a Task</div>
<div id="about">About Yanoe</div>
</div>