How do i make the banner go all the way up to the top

Viewed 13

Hey I want to make a banner at the top of the website just like amazon but when I try to make it, it doesn't go all the way up Amazon banner

1 Answers

Use css on a div around the image and make sure the margins have zero on the top.

<div class="banner">
<img src="">
</div>

in your css file...

.banner {
margin-top: 0px;
}
Related