I have searched for hours and couldn't find a fix to my problem, finally decided to sign up and ask (woohoo, first question). Here is my situation, I have this in my html markup :
<table>
<tr>
<td>
<img />
</td>
</tr>
<tr>
<td>
<div style="width:800px;text-align:justify;">
<input style="width:101px;" />
<input style="width:101px;" />
<input style="width:101px;" />
<input style="width:101px;" />
<input style="width:101px;" />
<input style="width:101px;" />
<input style="width:101px;" />
<input style="width:101px;" />
<input style="width:101px;" />
</div>
</td>
</tr>
</table>
Basically, this will be generated by an ASP.Net user control that I am designing at the moment (I don't think it is relevant). But whatever I do, I can't seem to be able to get the images to get justified in the final content. Is it possible that the fact I inserted them in a table cell is not allowing the justified style to function properly?
Before you ask, I tried the display:table / display:table-cell on and trick, didn't work as well.
Also, I am developing with pure Javascript for client side scripts and I don't want a solution involving jQuery (if at all possible). I would prefer simple and elegant html/css.