As a beginner, I may have messy code but I'm working on creating a job search page with a bar displaying the results like this:
I've almost got it, except I can't figure out how to add that divider between PREV, 1 to 100, and NEXT. My current setup looks like this:
Take a look at my code:
HTML:
<div class="results">
<a href="https://gregslist--farahgus10.repl.co/">Prev<a/>
<a href="https://gregslist--farahgus10.repl.co/" >1 to 100 of 179<a/>
<a href="https://gregslist--farahgus10.repl.co/" >Next<a/>
</div>
CSS:
.results {
color: black;
border: 1px solid lightgrey;
width: 300px;
padding: 5px;
margin-top: 25px;
margin-left: 60px;
margin-bottom: 30px;
}
I attempted to create a results class for each link, but ended up with one large box instead of individual boxes around each link.