So I have been at this for a little wile and I can't seem to figure it out. I am working on an assignment for my web dev class and for part of it I need to make two lists of links and they need to have a column type feel.
So right now for my HTML I have:
<div id="linkCol1">
<div class = "colHeading">For Standard Travelers</div>
<ul>
<li><a href="#">Standard seating chart</a></li>
<li><a href="#">Find out why our flights are so unique</a></li>
<li><a href="#">Read our insurance polic</a></li>
<li><a href="#">Join our frequent flyer club</a></li>
<li><a href="#">More Travel Resources...</a></li>
</ul>
<div id="linkCol2">
<div class = "colHeading"> For "Others"</div>
<ul>
<li><a href="#">Effect of electromagnetism on travelers</a></li>
<li><a href="#">Flying with animals</a></li>
<li><a href="#">Non-Smoking policy</a></li>
<li><a href="#">More Travel Resources...</a></li>
</ul>
</div>
</div>
And for my CSS (I took out all of the things I thought weren't working):
#linkCol2{
overflow:hidden;
float:right;
}
#linkCol1{
float:left;
overflow:hidden;
}
Now my page is supposed to look something like this:
http://ista230.com/images/assignments/7/page1.jpg
If you look towards the bottom you can see the to sets of links.
Any help would be great! (CSS 3 and HTML 5)