Tell us what’s happening:
At the top and bottom i see a little white bar that i want to remove. I’ve searched on internet, but putting my height to 100% doesnt work. Ive tried alot of things but cant seem to work it out
Your code so far
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
<!DOCTYPE html>
<html>
<div id="main">
<body>
<div id="background">
</body>
<h1 id="title">Barack Obama</h1>
<h2>Former USA President</h2>
<div id="img-div">
<img id="image"
src="https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/President_Barack_Obama.jpg/1200px-President_Barack_Obama.jpg" alt="Barack Obama">
<h3 id="img-caption">Former USA President</h3>
<p id="tribute-info">Obama's life:</p>
<ul>
<li><strong> 1961-</strong> Barack Obama was born on August 4, in Honolulu Hawaii </li>
<br>
<li><strong> 1979-</strong> Obama went to the Occidental College in Los Angeles. </li>
<br>
<li><strong> 1981-</strong> Obama made his first public speech. He transferred to Columbia University to major in political science.</li>
<br>
<li><strong> 1983-</strong> Obama graduated from Columbia University with a Bachelor of Arts degree, magna cum laude. </li>
<br>
<li><strong> 1988-</strong> Obama began to study at Harvard Law School.</li>
<br>
<li><strong> 1990-</strong> On February 5, Obama became the first black president of the Harvard Law Review.</li>
<br>
<li><strong> 1991-</strong> Obama graduated Harvard with his law degree and began work on his book Dreams of My Father.</li>
<br>
<li><strong> 1996-</strong> Obama was elected to the Illinois Senate.</li>
<br>
<li><strong> 2005-</strong> On January 5, Obama was sworn in as a U.S. Senator </li>
<br>
<li><strong> 2009-</strong> On January 20, Obama was sworn in as the 44th President of the United States. </li>
<br>
<li><strong> 2017-</strong> January 20th marked Obama's last day in the office. </li>
</ul>
<a id="tribute-link" href="https://nl.wikipedia.org/wiki/Barack_Obama" target="_blank"> Read More About Obama</a>
</div>
</div>
</html>
img{
max-width:20%;
display:block;
margin:auto;
border-radius:20px;
box-shadow:20px;
}
h1{
text-align:center;
font-family:Sans-serif;
font-size:bold;
}
h2{
text-align:center;
font-style:italic;
font-size:15px;
margin-top:-1em;
}
#img-caption {
font-style:italic;
font-size:15px;
margin-top:0.5em;
text-align:center;
}
p {
text-align:center;
font-size:20px;
font-style:bold;
text-color:black;
font-weight:900;
}
ul {
max-width: 550px;
margin: 0 auto 50px auto;
text-align: left;
line-height: 1.6;
}
li{
margin: 0.1px 0;
}
#background {
background-size:100% 100%;
background-image: linear-gradient(to right, rgba(255,0,0,0), rgba(255,0,0,1));
}
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36
.
Challenge: Build a Tribute Page
Link to the challenge: