I noticed that there is a significant gap between two of my divs when viewed in a browser.
Here is the code:
<div id="title-1">
<p>XYZ Corp is excited to introduce our latest project - Discover XYZ</p>
</div>
<div id="maindescription-1">
<p>At XYZ Corp, we are offering one-of-a-kind tours to showcase the essence of our culture in New York City. Join us
on a guided exploration through the vibrant streets of NYC to learn about the history and individuals who have shaped
this iconic city. Plus, indulge in tasting experiences featuring a variety of delicious cuisines. For more details, see below:</p>
CSS:
#title-1 {
font: normal normal bold 100% "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
float: left;
width: 850px;
padding: 10px;
color: #FFFF00;
text-align: justify;
vertical-align: baseline;
}
#maindescription-1 {
font: 100% "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
float: left;
width: 850px;
padding: 10px;
color: #FFFFFF;
text-align: justify;
vertical-align: baseline;
}
Any suggestions on how to resolve this issue?