** Edit 3:**
Another example of what I try to achive:
+--------------------+
| |
| +--++--++--++--+ |
| |1 ||2 ||3 ||4 | |
| | || |+--+| | |
| +--+| |+--+| | |
| +--+| ||7 |+--+ |
| |5 |+--+| |+--+ |
| | |+--+| ||8 | |
| | ||6 || |+--+ |
| +--+| |+--+ |
| +--+ |
| |
+--------------------+
Code:
<body> 8x <img /> </body>
CSS:
?
Hello,
I have 3 images in an HTML page which displays like this:
(basically, in code, it's just three <img />
in a row)
+------------------+
| |
| +---++-------+ |
| |1 ||2 | |
| | || | |
| +---+| | |
| | | |
| +-------+ |
| +--+ |
| |3 | |
| | | |
| +--+ |
| |
+------------------+
But I would like it to show without the vertical gap between 2nd and 3rd one, like:
+------------------+
| |
| +---++-------+ |
| |1 ||2 | |
| | || | |
| +---+| | |
| +--+ | | |
| |3 | +-------+ |
| | | |
| +--+ |
| |
| |
| |
+------------------+
How to? Is it somehow possible to do this CSS?
Edit:
In other words, I want the 3rd image to touch the 1st one, as there clearly is some space left. But whan the screen is not large enough, the 3rd "reflows" (is this the right word?) to the next line which maintains the height of heighest element from the line above. And I don't want it to maintain the height, I want it to fit closely together..
Edit 2:
code:
<html><body>
<img /><img /><img />
</body><html>
It's really just a few images in a row......