View Single Post
10-03-2015, 10:21 PM
#1
kaymeis is offline kaymeis
Status: I'm new around here
Join date: Jun 2012
Location: accra
Expertise: design, writing
Software: photoshop, alleycode, GIMP,
 
Posts: 13
iTrader: 0 / 0%
 

kaymeis is on a distinguished road

  Old  Help in Ailigning Images Div

I'm trying to aligning images accross a ribbon wraparound. . Except that my CSS code isnt rendering. Here is the code:

#container {
text-align: justify;
}
#container > div {
width: 100px; /* Declare your value. Can be in relative units. */
display: inline-block;
vertical-align: top;

/* IE fix. */
*display: inline;
zoom: 1;
}
#container:after {
content: "";
width: 100%;
display: inline-block;
}

Reply With Quote