I'm mimicking this webpage as practice:
https://getbootstrap.com/docs/3.3/getting-started/
and I'm having difficulty attaching the blue div that takes you to Bootstrap 4 to the top of the page. I want to ensure there is no space between the div, like the website provided.
Here is the code I have so far:
body {
background-color: white;
}
#top {
background-color: #386CD5;
text-align: center;
color: white;
text-decoration: bold;
padding: 16px;
border-radius:0px;
}
#special1:visited {
color:#386CD5;
}
#top:hover {
background-color: #2C62BF;
}
<a id="special1" href="https://getbootstrap.com">
<div id="top">
<strong>Bootstrap 4 is here!</strong>
</div>
</a>
Thanks.