Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Align divs horizontally

Tags:

html

css

I have the following Divs:

   <div class = "left">
     <div class = "custimage"><img src = "img/notch.jpg" alt = "notch"/><p>Notch</p></div>
     <div class = "custimage"><img src = "img/peak.jpg" alt = "peak"/><p>Peak</p></div>
     <div class = "custimage"><img src = "img/shawl.jpg" alt = "shawl"/><p>Shawl</p></div>
   </div>

The CSS:

.left {
    position: relative;
    float: left;
    width:600px;
    height:200px;
    background-color: #000;
    opacity: 0.7;
}

.custimage{
   position:relative;
   margin-top: 15px;
   margin-left: 15px;
   height: 170px;
   width: 130px;
   background-color: #999;
   text-align:left;
}

.custimage p{
    color: #fff;
    font:normal 60%/1.5 Helvetica, Arial, sans-serif;
    padding-left: 5px;
}

The images don't align horizontally though:

http://www.everry.com/new/customise/customisenow.html

What am I doing wrong?

like image 887
user559142 Avatar asked Dec 03 '25 19:12

user559142


2 Answers

Apply a float:left on .custimage

.custimage{
   position:relative;
   margin-top: 15px;
   margin-left: 15px;
   height: 170px;
   width: 130px;
   background-color: #999;
   text-align:left;
   float: left;  // float all cust images to the left so they stack up against each other
}
like image 54
aziz punjani Avatar answered Dec 06 '25 10:12

aziz punjani


Add float: left to .custimage .

like image 23
afkbowflexin Avatar answered Dec 06 '25 09:12

afkbowflexin