I have a page with several "modules" made up of individual <div>s that are 159 px wide and 160 px high. The modules should form a centered row. The containing <div> is set to 70% width.
When the window is resized so that one or more of the modules drop to the next row, I want them to be left-aligned instead of centering the next row, so that you wouldn't see (for instance) four modules on top and one centered below them.
This means that using text-align: center is not an option, which is unfortunate because that centers them perfectly otherwise. With my current CSS they are kind of centered, but when one module drops down to the next row, the centering <div> does not resize back to the content width, so it is not perfectly centered. Is this something that can be resolved with CSS? If not, I'd be willing to use jQuery.
#modulesAreaBlock { /*Outer containing DIV*/
margin-top: 50px;
width:70%;
margin-left: auto;
margin-right: auto;
text-align: center;
}
#modulesCenter { /*DIV for centering the modules inside the outer DIV*/
display: inline-block;
text-align: left;
}
.moduleBlock { /*The individual "module" DIVs*/
text-align:center;
height: 160px;
width: 159px;
margin-bottom: 2px;
display: inline-block;
zoom: 1;
*display: inline;
_height: 160px;
}