I'm trying to get three columns to line up, space evenly, and be a complete box. Debating borders, but I digress.
So far, my code looks like this:
HTML
<div id="container">
<div id="container-left">
<h3>Logo Design Services</h3>
<p>We work with you to design the perfect logo for your business, event, or team. The process puts you in the driver's seat as we work
to produce something you just cannot live without. Whether we get it right on the first time, or the billionth, the price never changes.
Logo design starts at just $100.00</p>
<h5><i>**Subject to change without notice or update to this site**</i> </h5>
<div id="container-center">
<h3>Business Product Design</h3>
<p>With a multitude of products, from <b>business cards, letterhead, namebadges, signage, vehicle signage, window decals, flyers, and more</b>.
We can design virtually anything you need in order to make your business look the way you always believed it would. See <a href="packagedeals.html">Package Deals</a>
section to see each individual item, and get our "Start Me Up" Pacakge that includes the <b>Business cards, letterhead, namebadges and logo for $150.00</b></p>
<div id="container-right">
<h3>Promotional Product Design</h3>
<p>Dave's Logo Designs does not print or manufactur promotional products, but will research and help line you up with someone who can. With all promotional product
items purchased, you get one copy of our interactive price/profit spreadsheet. We do the work to put what you ordered and the quantities, so you set the price to see
what your profit could be. Design cost is based upon item needed. <a href="contact.html">Contact us</a> for more information about promotional product design</p>
<h5>** Research fee may apply if we research the company. Research fee is $10.00/hr.**</h5>
</div>
</div>
</div>
</div>
my css:
#container {
width: 100%;
}
#container-left {
display: inline-block;
float: left;
clear: left;
width: 33%;
padding: 25px;
margin-left: 175px;
}
#container-left h3 {
text-align: center;
}
#container-left p {
text-align: left;
}
#container-left h5 {
text-align: center;
color: red;
text-decoration: italic;
}
#container-center {
display: inline-block;
float: center;
clear: left;
width: 34%;
padding: 15px;
}
#container-center h3 {
text-align: center;
}
#container-center p {
text-align: left;
}
#container-right {
display: inline-block;
float: right;
width: 33%;
padding: 5px;
}
#container-right h3 {
text-align: center;
}
#container-right p {
text-align: left;
}
#container-right h5 {
text-align: center;
color: red;
}
Nothing seems to be lining up. I'm unsure as to why. Thanks for any help. The top line always is indenting crazy. I'm debating if I want to put a border around. Also, if I use that same class tag (I know it's ID now, will it always put it underneath the one that would overflow, or would it affect how it looks?
WANT IT TO LOOK LIKE: BUSINESS SERVICES
LOGO SERVICES BUSINESS PRODUCT DESIGN PROMOTIONAL
Blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah
SPORTS TEAM SERVICES
LOGO DESIGN JERSEY DESIGN MERCHANDISE
Blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah
this hopefully helps you guys. Thanks for the assistance