Hello everybody!
I am having troubles visualizing a set of images made with lists in the PRINT PREVIEW of IE7.
The elements of the list are like follows:
<li><a href="url.html"><img src="profileImage.jpg"></a><p>Name<b>Surname</b></p></li>
and this is the associated style command:
li{
display: block;
float: left;
height: 170px;
}
In the page I see it properly (every image is displayed near to the next one until the dimension of the containing div is reached and a new line of images is started). In explorer 7 print mode I can't use float:left because it is buggy so I will use display: inline-block instead. Unfortunately each image will be displayed in a new line, destroying the original ordering. The question is:
WITHOUT altering the HTML list structure is there a way to achieve the desired result on print mode?
In FF everything works fine even with inline-block.
Thanks a lot!
Fabio
P.S. I wish I could link an example but from where I am I can't