On the web page I'm practicing with, I've noticed an unwanted space at the top of the "Favorite Food" section. To center my unordered list, I made the "section" elements inline-block, but this created the issue. How can I remove that space at the top of the "Favorite Food" section?
h1{
background-color: #00F88F;
color: rgb(255,0,0);
}
header{
background-color: #00EEEE;
font-variant: small-caps;
font-size: 150%;
text-align: center;
}
section{
width: 45%;
display: inline-block;
text-align: center;
}
ul{
display: table;
text-align: left;
margin: 0 auto;
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="style.css">
<title>Introduction to HTML Submission</title>
</head>
<body>
<header>
<h1>Pratyay Mukherjee</h1>
<nav>
<a href="http://www.google.com" target="_blank">One</a>
<a href="http://www.coursera.org" target="_blank">Two</a>
<a href="https://en.wikipedia.org/wiki/Michael_Schumacher" target="_blank">Three</a>
<a href="https://validator.w3.org/nu/" target="_blank">Validator</a>
</nav>
</header>
<section>
<h2>Favorite Foods</h2>
<ul>
<li>Pineapple</li>
<li>Chicken Curry</li>
<li>Fish Curry</li>
<li>Meat Biriyani</li>
</ul>
</section>
<section>
<h2>Achievements</h2>
<label for="m1">Progress in this course (100%)</label>
<progress id="m1" value=100 max="100"> 100% </progress><br>
<label for="m2">Progress in the Specializaton capstone (20%)</label>
<progress id ="m2" value="20" max="100"> 20% </progress><br>
<label for="m3"> Progress in life goals (33%)</label>
<progress id="m3" value="33" max="100"> 33% </progress>
</section>
<section>
<h2>More About Me</h2>
<details>
<summary>My Childhood</summary>
<p>I was born in Kolkata, India on 20<sup>th</sup> Decemeber 1998. I loved to paint and play the piano since a very young age. I love the mountains and travelling</p>
</details>
</section>
<footer>
<img src="http://www.intro-webdesign.com/images/newlogo.png">
This page was created by Pratyay Mukherjee and Colleen van Lent. To learn more about web design, visit <a href="http://intro-webdesign.com/">Intro to Web Design</a>
</footer>
</body>
</html>