📜 ⬆️ ⬇️

How to create an image slider in a mail message

Translator's note: In our blog, we have repeatedly talked about creating interactive email newsletters using CSS and HTML. Today we present to your attention an adapted translation of materials from the Fresh Inbox blog on how to create an image slider in an email message that will be displayed on mobile devices, as well as on the web and on the desktop.



This article describes the process of creating a slider from thumbnail images for email newsletters. First, we will focus on the implementation of the slider for mobile software, and in particular for the native email clients of the iPhone and Android. Then we will add support for fixed platforms.
')
As you can see in the screenshot above, our goal is a slider with thumbnails located above the main image. Unsupported email clients will not display thumbnails.

The slider will be designed only for one link, which is well suited for describing a product from different angles (or, as in our case, hotel rooms), but is absolutely not suitable for describing different products, where each image requires a separate link.
This article will use a number of techniques described in the “ Interactive Images for Mobile Email Distribution ”, so if you have any questions, you can always refer to the above article for clarification.

Resource Preparation


For our implementation, we need 4 miniatures and 4 images of regular size. Select the size of the thumbnails so that they fit on one line.

Main image and link


First we will create a div container for our slider and assign it the class “car-cont”. Then we add the main image with the link, and also create a wrapping div around them with the class “car-img”. We will set the width and height of the container according to the parameters of the main image.

<div class="car-cont" style="width:350px;height:263px;max-height:263px; overflow:hidden;position:relative;"> <div class="car-img"> <a href="http://.../link "> <img src="http://.../bed.jpg" width="350" height="263" border="0" alt="Hotel" style="display:block;"> </a></div> </div> 

Adding thumbnails and additional images


Now add thumbnails with additional images. Since the miniatures would take additional space vertically and, thus, would go beyond the container, we need to hide them along with additional images using the techniques from this article .

 <div class="car-cont" style="width:350px;height:263px;max-height:263px; overflow:hidden;position:relative;"> <!--[if !mso]><!-- --> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"> <img src="http://.../images/thumb-bed.jpg"> </div> <div class="car-thumb" style="max-height:0px; height:0px; overflow: hidden;"> <img src="http://.../images/thumb-table.jpg"> </div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"> <img src="http://.../images/table.jpg" width="350" height="263" border="0" style="display:block;"> </div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"> <img src="http://.../images/thumb-pool.jpg"> </div> <div class="car-img" style="max-height:0px; height:0px; overflow: hidden;"> <img src="http://.../images/pool.jpg" width="350" height="263" border="0" style="display:block;"> </div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"> <img src="http://.../images/thumb-balcony.jpg"> </div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"> <img src="http://.../images/balcony.jpg" width="350" height="263" border="0" style="display:block;"> </div> <!--<![endif]--> <div class="car-img"> <a href="http://.../link"> <img src="http://.../images/bed.jpg" width="350" height="263" border="0" alt="Hotel" style="display:block;"></a> </div> </div> 

Please note that we alternate all the miniatures (car-thumb), except the first, with the associated full-size images (car-img).
We need this alternation so that when the user clicks on the thumbnail (the pseudo-class :hover activates), we can use the related CSS selector (“+”) to output the corresponding full image (see explanation in the example ):

.car-thumb:hover + .car-img {...}

Instead of placing the main image next to the first thumbnail, we leave it at the bottom. This step allows us to simplify the process of hiding interactive content by separating it from the main image. It will also allow placing this image on top of the stack when using absolute positioning in the future.

CSS styles


Since the first version of the slider will work only with mobile platforms, we wrap the entire CSS block in the media request.

 <style> @media screen and (max-device-width: 1024px) { div[class].car-cont{ height:327px !important; max-height:327px !important; } div[class].car-thumb, div[class].car-thumb img { display: inline-block; max-height: none !important; width:87px; height:65px !important; cursor: pointer; } div[class].car-img{ height: auto !important; max-height: none !important; position: absolute; left:0px; top: 65px; } div[class].car-thumb:hover + .car-img { z-index:2; } } </style> 

Consider the code in more detail:

First, we increase the height of the container so that the thumbnails fit in there.

 div[class].car-cont{ height:327px !important; max-height:327px !important; } 

Then we set the height and width of the thumbnails (car-thumb), and also set the display property to an “inline-block”, thereby placing the thumbnails in a row from left to right.

 div[class].car-thumb, div[class].car-thumb img { display: inline-block; max-height: none !important; width:87px; height:65px; } 

After that we set the absolute positioning for full-size images and place them below the thumbnails. Now all 4 images, in the form of a stack, are located in the same place on the page. In this case, only the last image from the stack will be visible.

 div[class].car-img{ height: auto !important; max-height: none !important; position: absolute; left:0px; top: 65px; } 

Finally, we use the sibling selector to change the z-index property of the thumbnail-related full-size image. This is necessary in order to place it on top of the main image, after the user has clicked on the thumbnail.

 div[class].car-thumb:hover + .car-img { z-index:2; } 

Total


This example works on native iPhone and Android email clients (2.3 and 4.0). Yahoo! mobile apps and mobile web clients. Mail, Outlook.com or Gmail will display only the main image without thumbnails.

As you can see, creating an image slider for mobile email clients is a rather trivial process. In order to get the slider to work in web clients and Outlook 2003, it will take a little more effort.

Web and stationary clients


In the first part we dealt with creating an image slider using thumbnails for mobile email clients. In this article, we will go further and add support for web and fixed clients (such as Yahoo! Mail, Outlook.com and Outlook 2003).

In this case, we will have to make a little more effort than in the first part, so if you just need a sample code, then at the end of the article is its final version.

No absolute positioning support for web clients and Outlook


The main difficulty in using complex markup in these clients is the lack of support for certain CSS styles. In this case, we cannot use the key property from the solution for mobile platforms (absolute positioning or position: absolute).

Absolute positioning allows you to place elements in arbitrary places in the document. This property was used by us to place images in the form of a stack in the same place in the example with mobile platforms . To place an image on top of the rest, it was enough to change the value of z-index.

In the case of web and stationary clients, we will have to look for alternatives.

Moving items outside the container


In this example, the HTML markup of our elements (thumbnails and full-size images) will remain unchanged, but instead of arranging the images as a stack, we will move them outside the . ( ), «overflow» hidden . , div .

:

[ 1] [ 2] [ 2 – ] [ 3] [ 3 - ] [ 4] [ 4 - ] [ 1]
( ):



1 –
, , .

2 – 2, 3, 4
, (+), . , 3 4 .

3 4. , , , .. .


2, 3 4 , ?

, , . 4 « » . , . , , .

web .

Outlook 2003
, , , Outlook 2003, doctype ( : <!DOCTYPE html …>)

doctype , , .


, , .

<style> .car-cont{ height:327px !important; max-height:327px !important; } .car-img{ max-height: none !important; width:auto !important; height: auto !important; display: none; } .car-img-1{ clear:left; display:block; } .car-thumb, .car-thumb img { display: inline-block; float: left; max-height: none !important; width:87px; height:65px !important; cursor: pointer; } .car-thumb:hover + .car-img { clear:both; display:block !important; } } @media screen and (max-device-width: 1024px) { div[class].car-img{ position: absolute; left:0px; top: 65px; } div[class].car-thumb:hover + .car-img { z-index:2; } </style> <table cellpadding=0 border=0 cellspacing=0 style="border-spacing:0px;border-collapse: collapse;"> <tr><td background="http://freshinbox.com/examples/carousel/images/thumbs-background.jpg"> <div class="car-cont" style="width:350px;height:263px;max-height:263px;overflow:hidden;position:relative;"> <div style="mso-hide:all;"> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-table.jpg" width="350" height="263" border="0" style="display:block;"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-pool.jpg" width="350" height="263" border="0" style="display:block;"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-balcony.jpg" width="350" height="263" border="0" style="display:block;"></div> </div> <div class="car-img car-img-1"><a href="http://www.omnihotels.com/FindAHotel/AmeliaIsland.aspx"><img src="http://freshinbox.com/examples/carousel/images/i-bed.jpg" width="350" height="263" border="0" alt="Hotel" style="display:block;"></a></div> </div> </td></tr></table>


. , , Yahoo! Mail, Outlook.com, AOL Outlook 2003.
Gmail , email-!
. ( ), «overflow» hidden . , div .

:

[ 1] [ 2] [ 2 – ] [ 3] [ 3 - ] [ 4] [ 4 - ] [ 1]
( ):



1 –
, , .

2 – 2, 3, 4
, (+), . , 3 4 .

3 4. , , , .. .


2, 3 4 , ?

, , . 4 « » . , . , , .

web .

Outlook 2003
, , , Outlook 2003, doctype ( : <!DOCTYPE html …>)

doctype , , .


, , .

<style> .car-cont{ height:327px !important; max-height:327px !important; } .car-img{ max-height: none !important; width:auto !important; height: auto !important; display: none; } .car-img-1{ clear:left; display:block; } .car-thumb, .car-thumb img { display: inline-block; float: left; max-height: none !important; width:87px; height:65px !important; cursor: pointer; } .car-thumb:hover + .car-img { clear:both; display:block !important; } } @media screen and (max-device-width: 1024px) { div[class].car-img{ position: absolute; left:0px; top: 65px; } div[class].car-thumb:hover + .car-img { z-index:2; } </style> <table cellpadding=0 border=0 cellspacing=0 style="border-spacing:0px;border-collapse: collapse;"> <tr><td background="http://freshinbox.com/examples/carousel/images/thumbs-background.jpg"> <div class="car-cont" style="width:350px;height:263px;max-height:263px;overflow:hidden;position:relative;"> <div style="mso-hide:all;"> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-table.jpg" width="350" height="263" border="0" style="display:block;"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-pool.jpg" width="350" height="263" border="0" style="display:block;"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-balcony.jpg" width="350" height="263" border="0" style="display:block;"></div> </div> <div class="car-img car-img-1"><a href="http://www.omnihotels.com/FindAHotel/AmeliaIsland.aspx"><img src="http://freshinbox.com/examples/carousel/images/i-bed.jpg" width="350" height="263" border="0" alt="Hotel" style="display:block;"></a></div> </div> </td></tr></table>


. , , Yahoo! Mail, Outlook.com, AOL Outlook 2003.
Gmail , email-!
. ( ), «overflow» hidden . , div .

:

[ 1] [ 2] [ 2 – ] [ 3] [ 3 - ] [ 4] [ 4 - ] [ 1]
( ):



1 –
, , .

2 – 2, 3, 4
, (+), . , 3 4 .

3 4. , , , .. .


2, 3 4 , ?

, , . 4 « » . , . , , .

web .

Outlook 2003
, , , Outlook 2003, doctype ( : <!DOCTYPE html …>)

doctype , , .


, , .

<style> .car-cont{ height:327px !important; max-height:327px !important; } .car-img{ max-height: none !important; width:auto !important; height: auto !important; display: none; } .car-img-1{ clear:left; display:block; } .car-thumb, .car-thumb img { display: inline-block; float: left; max-height: none !important; width:87px; height:65px !important; cursor: pointer; } .car-thumb:hover + .car-img { clear:both; display:block !important; } } @media screen and (max-device-width: 1024px) { div[class].car-img{ position: absolute; left:0px; top: 65px; } div[class].car-thumb:hover + .car-img { z-index:2; } </style> <table cellpadding=0 border=0 cellspacing=0 style="border-spacing:0px;border-collapse: collapse;"> <tr><td background="http://freshinbox.com/examples/carousel/images/thumbs-background.jpg"> <div class="car-cont" style="width:350px;height:263px;max-height:263px;overflow:hidden;position:relative;"> <div style="mso-hide:all;"> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-table.jpg" width="350" height="263" border="0" style="display:block;"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-pool.jpg" width="350" height="263" border="0" style="display:block;"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-balcony.jpg" width="350" height="263" border="0" style="display:block;"></div> </div> <div class="car-img car-img-1"><a href="http://www.omnihotels.com/FindAHotel/AmeliaIsland.aspx"><img src="http://freshinbox.com/examples/carousel/images/i-bed.jpg" width="350" height="263" border="0" alt="Hotel" style="display:block;"></a></div> </div> </td></tr></table>


. , , Yahoo! Mail, Outlook.com, AOL Outlook 2003.
Gmail , email-!
. ( ), «overflow» hidden . , div .

:

[ 1] [ 2] [ 2 – ] [ 3] [ 3 - ] [ 4] [ 4 - ] [ 1]
( ):



1 –
, , .

2 – 2, 3, 4
, (+), . , 3 4 .

3 4. , , , .. .


2, 3 4 , ?

, , . 4 « » . , . , , .

web .

Outlook 2003
, , , Outlook 2003, doctype ( : <!DOCTYPE html …>)

doctype , , .


, , .

<style> .car-cont{ height:327px !important; max-height:327px !important; } .car-img{ max-height: none !important; width:auto !important; height: auto !important; display: none; } .car-img-1{ clear:left; display:block; } .car-thumb, .car-thumb img { display: inline-block; float: left; max-height: none !important; width:87px; height:65px !important; cursor: pointer; } .car-thumb:hover + .car-img { clear:both; display:block !important; } } @media screen and (max-device-width: 1024px) { div[class].car-img{ position: absolute; left:0px; top: 65px; } div[class].car-thumb:hover + .car-img { z-index:2; } </style> <table cellpadding=0 border=0 cellspacing=0 style="border-spacing:0px;border-collapse: collapse;"> <tr><td background="http://freshinbox.com/examples/carousel/images/thumbs-background.jpg"> <div class="car-cont" style="width:350px;height:263px;max-height:263px;overflow:hidden;position:relative;"> <div style="mso-hide:all;"> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-table.jpg" width="350" height="263" border="0" style="display:block;"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-pool.jpg" width="350" height="263" border="0" style="display:block;"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-balcony.jpg" width="350" height="263" border="0" style="display:block;"></div> </div> <div class="car-img car-img-1"><a href="http://www.omnihotels.com/FindAHotel/AmeliaIsland.aspx"><img src="http://freshinbox.com/examples/carousel/images/i-bed.jpg" width="350" height="263" border="0" alt="Hotel" style="display:block;"></a></div> </div> </td></tr></table>


. , , Yahoo! Mail, Outlook.com, AOL Outlook 2003.
Gmail , email-!
. ( ), «overflow» hidden . , div .

:

[ 1] [ 2] [ 2 – ] [ 3] [ 3 - ] [ 4] [ 4 - ] [ 1]
( ):



1 –
, , .

2 – 2, 3, 4
, (+), . , 3 4 .

3 4. , , , .. .


2, 3 4 , ?

, , . 4 « » . , . , , .

web .

Outlook 2003
, , , Outlook 2003, doctype ( : <!DOCTYPE html …>)

doctype , , .


, , .

<style> .car-cont{ height:327px !important; max-height:327px !important; } .car-img{ max-height: none !important; width:auto !important; height: auto !important; display: none; } .car-img-1{ clear:left; display:block; } .car-thumb, .car-thumb img { display: inline-block; float: left; max-height: none !important; width:87px; height:65px !important; cursor: pointer; } .car-thumb:hover + .car-img { clear:both; display:block !important; } } @media screen and (max-device-width: 1024px) { div[class].car-img{ position: absolute; left:0px; top: 65px; } div[class].car-thumb:hover + .car-img { z-index:2; } </style> <table cellpadding=0 border=0 cellspacing=0 style="border-spacing:0px;border-collapse: collapse;"> <tr><td background="http://freshinbox.com/examples/carousel/images/thumbs-background.jpg"> <div class="car-cont" style="width:350px;height:263px;max-height:263px;overflow:hidden;position:relative;"> <div style="mso-hide:all;"> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-table.jpg" width="350" height="263" border="0" style="display:block;"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-pool.jpg" width="350" height="263" border="0" style="display:block;"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-balcony.jpg" width="350" height="263" border="0" style="display:block;"></div> </div> <div class="car-img car-img-1"><a href="http://www.omnihotels.com/FindAHotel/AmeliaIsland.aspx"><img src="http://freshinbox.com/examples/carousel/images/i-bed.jpg" width="350" height="263" border="0" alt="Hotel" style="display:block;"></a></div> </div> </td></tr></table>


. , , Yahoo! Mail, Outlook.com, AOL Outlook 2003.
Gmail , email-!
. ( ), «overflow» hidden . , div .

:

[ 1] [ 2] [ 2 – ] [ 3] [ 3 - ] [ 4] [ 4 - ] [ 1]
( ):



1 –
, , .

2 – 2, 3, 4
, (+), . , 3 4 .

3 4. , , , .. .


2, 3 4 , ?

, , . 4 « » . , . , , .

web .

Outlook 2003
, , , Outlook 2003, doctype ( : <!DOCTYPE html …>)

doctype , , .


, , .

<style> .car-cont{ height:327px !important; max-height:327px !important; } .car-img{ max-height: none !important; width:auto !important; height: auto !important; display: none; } .car-img-1{ clear:left; display:block; } .car-thumb, .car-thumb img { display: inline-block; float: left; max-height: none !important; width:87px; height:65px !important; cursor: pointer; } .car-thumb:hover + .car-img { clear:both; display:block !important; } } @media screen and (max-device-width: 1024px) { div[class].car-img{ position: absolute; left:0px; top: 65px; } div[class].car-thumb:hover + .car-img { z-index:2; } </style> <table cellpadding=0 border=0 cellspacing=0 style="border-spacing:0px;border-collapse: collapse;"> <tr><td background="http://freshinbox.com/examples/carousel/images/thumbs-background.jpg"> <div class="car-cont" style="width:350px;height:263px;max-height:263px;overflow:hidden;position:relative;"> <div style="mso-hide:all;"> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-table.jpg" width="350" height="263" border="0" style="display:block;"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-pool.jpg" width="350" height="263" border="0" style="display:block;"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-balcony.jpg" width="350" height="263" border="0" style="display:block;"></div> </div> <div class="car-img car-img-1"><a href="http://www.omnihotels.com/FindAHotel/AmeliaIsland.aspx"><img src="http://freshinbox.com/examples/carousel/images/i-bed.jpg" width="350" height="263" border="0" alt="Hotel" style="display:block;"></a></div> </div> </td></tr></table>


. , , Yahoo! Mail, Outlook.com, AOL Outlook 2003.
Gmail , email-!
. ( ), «overflow» hidden . , div .

:

[ 1] [ 2] [ 2 – ] [ 3] [ 3 - ] [ 4] [ 4 - ] [ 1]
( ):



1 –
, , .

2 – 2, 3, 4
, (+), . , 3 4 .

3 4. , , , .. .


2, 3 4 , ?

, , . 4 « » . , . , , .

web .

Outlook 2003
, , , Outlook 2003, doctype ( : <!DOCTYPE html …>)

doctype , , .


, , .

<style> .car-cont{ height:327px !important; max-height:327px !important; } .car-img{ max-height: none !important; width:auto !important; height: auto !important; display: none; } .car-img-1{ clear:left; display:block; } .car-thumb, .car-thumb img { display: inline-block; float: left; max-height: none !important; width:87px; height:65px !important; cursor: pointer; } .car-thumb:hover + .car-img { clear:both; display:block !important; } } @media screen and (max-device-width: 1024px) { div[class].car-img{ position: absolute; left:0px; top: 65px; } div[class].car-thumb:hover + .car-img { z-index:2; } </style> <table cellpadding=0 border=0 cellspacing=0 style="border-spacing:0px;border-collapse: collapse;"> <tr><td background="http://freshinbox.com/examples/carousel/images/thumbs-background.jpg"> <div class="car-cont" style="width:350px;height:263px;max-height:263px;overflow:hidden;position:relative;"> <div style="mso-hide:all;"> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-table.jpg" width="350" height="263" border="0" style="display:block;"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-pool.jpg" width="350" height="263" border="0" style="display:block;"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-balcony.jpg" width="350" height="263" border="0" style="display:block;"></div> </div> <div class="car-img car-img-1"><a href="http://www.omnihotels.com/FindAHotel/AmeliaIsland.aspx"><img src="http://freshinbox.com/examples/carousel/images/i-bed.jpg" width="350" height="263" border="0" alt="Hotel" style="display:block;"></a></div> </div> </td></tr></table>


. , , Yahoo! Mail, Outlook.com, AOL Outlook 2003.
Gmail , email-!

. ( ), «overflow» hidden . , div .

:

[ 1] [ 2] [ 2 – ] [ 3] [ 3 - ] [ 4] [ 4 - ] [ 1]
( ):



1 –
, , .

2 – 2, 3, 4
, (+), . , 3 4 .

3 4. , , , .. .


2, 3 4 , ?

, , . 4 « » . , . , , .

web .

Outlook 2003
, , , Outlook 2003, doctype ( : <!DOCTYPE html …>)

doctype , , .


, , .

<style> .car-cont{ height:327px !important; max-height:327px !important; } .car-img{ max-height: none !important; width:auto !important; height: auto !important; display: none; } .car-img-1{ clear:left; display:block; } .car-thumb, .car-thumb img { display: inline-block; float: left; max-height: none !important; width:87px; height:65px !important; cursor: pointer; } .car-thumb:hover + .car-img { clear:both; display:block !important; } } @media screen and (max-device-width: 1024px) { div[class].car-img{ position: absolute; left:0px; top: 65px; } div[class].car-thumb:hover + .car-img { z-index:2; } </style> <table cellpadding=0 border=0 cellspacing=0 style="border-spacing:0px;border-collapse: collapse;"> <tr><td background="http://freshinbox.com/examples/carousel/images/thumbs-background.jpg"> <div class="car-cont" style="width:350px;height:263px;max-height:263px;overflow:hidden;position:relative;"> <div style="mso-hide:all;"> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-table.jpg" width="350" height="263" border="0" style="display:block;"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-pool.jpg" width="350" height="263" border="0" style="display:block;"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-balcony.jpg" width="350" height="263" border="0" style="display:block;"></div> </div> <div class="car-img car-img-1"><a href="http://www.omnihotels.com/FindAHotel/AmeliaIsland.aspx"><img src="http://freshinbox.com/examples/carousel/images/i-bed.jpg" width="350" height="263" border="0" alt="Hotel" style="display:block;"></a></div> </div> </td></tr></table>


. , , Yahoo! Mail, Outlook.com, AOL Outlook 2003.
Gmail , email-!

. ( ), «overflow» hidden . , div .

:

[ 1] [ 2] [ 2 – ] [ 3] [ 3 - ] [ 4] [ 4 - ] [ 1]
( ):



1 –
, , .

2 – 2, 3, 4
, (+), . , 3 4 .

3 4. , , , .. .


2, 3 4 , ?

, , . 4 « » . , . , , .

web .

Outlook 2003
, , , Outlook 2003, doctype ( : <!DOCTYPE html …>)

doctype , , .


, , .

<style> .car-cont{ height:327px !important; max-height:327px !important; } .car-img{ max-height: none !important; width:auto !important; height: auto !important; display: none; } .car-img-1{ clear:left; display:block; } .car-thumb, .car-thumb img { display: inline-block; float: left; max-height: none !important; width:87px; height:65px !important; cursor: pointer; } .car-thumb:hover + .car-img { clear:both; display:block !important; } } @media screen and (max-device-width: 1024px) { div[class].car-img{ position: absolute; left:0px; top: 65px; } div[class].car-thumb:hover + .car-img { z-index:2; } </style> <table cellpadding=0 border=0 cellspacing=0 style="border-spacing:0px;border-collapse: collapse;"> <tr><td background="http://freshinbox.com/examples/carousel/images/thumbs-background.jpg"> <div class="car-cont" style="width:350px;height:263px;max-height:263px;overflow:hidden;position:relative;"> <div style="mso-hide:all;"> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-table.jpg" width="350" height="263" border="0" style="display:block;"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-pool.jpg" width="350" height="263" border="0" style="display:block;"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-balcony.jpg" width="350" height="263" border="0" style="display:block;"></div> </div> <div class="car-img car-img-1"><a href="http://www.omnihotels.com/FindAHotel/AmeliaIsland.aspx"><img src="http://freshinbox.com/examples/carousel/images/i-bed.jpg" width="350" height="263" border="0" alt="Hotel" style="display:block;"></a></div> </div> </td></tr></table>


. , , Yahoo! Mail, Outlook.com, AOL Outlook 2003.
Gmail , email-!
      .       (       ),     «overflow»  hidden   .    ,       div . 

:

[ 1] [ 2] [ 2 – ] [ 3] [ 3 - ] [ 4] [ 4 - ] [ 1]
( ):



1 –
, , .

2 – 2, 3, 4
, (+), . , 3 4 .

3 4. , , , .. .


2, 3 4 , ?

, , . 4 « » . , . , , .

web .

Outlook 2003
, , , Outlook 2003, doctype ( : <!DOCTYPE html …>)

doctype , , .


, , .

<style> .car-cont{ height:327px !important; max-height:327px !important; } .car-img{ max-height: none !important; width:auto !important; height: auto !important; display: none; } .car-img-1{ clear:left; display:block; } .car-thumb, .car-thumb img { display: inline-block; float: left; max-height: none !important; width:87px; height:65px !important; cursor: pointer; } .car-thumb:hover + .car-img { clear:both; display:block !important; } } @media screen and (max-device-width: 1024px) { div[class].car-img{ position: absolute; left:0px; top: 65px; } div[class].car-thumb:hover + .car-img { z-index:2; } </style> <table cellpadding=0 border=0 cellspacing=0 style="border-spacing:0px;border-collapse: collapse;"> <tr><td background="http://freshinbox.com/examples/carousel/images/thumbs-background.jpg"> <div class="car-cont" style="width:350px;height:263px;max-height:263px;overflow:hidden;position:relative;"> <div style="mso-hide:all;"> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-table.jpg" width="350" height="263" border="0" style="display:block;"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-pool.jpg" width="350" height="263" border="0" style="display:block;"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-balcony.jpg" width="350" height="263" border="0" style="display:block;"></div> </div> <div class="car-img car-img-1"><a href="http://www.omnihotels.com/FindAHotel/AmeliaIsland.aspx"><img src="http://freshinbox.com/examples/carousel/images/i-bed.jpg" width="350" height="263" border="0" alt="Hotel" style="display:block;"></a></div> </div> </td></tr></table>

. , , Yahoo! Mail, Outlook.com, AOL Outlook 2003.
Gmail , email-!

. ( ), «overflow» hidden . , div .

:

[ 1] [ 2] [ 2 – ] [ 3] [ 3 - ] [ 4] [ 4 - ] [ 1]
( ):



1 –
, , .

2 – 2, 3, 4
, (+), . , 3 4 .

3 4. , , , .. .


2, 3 4 , ?

, , . 4 « » . , . , , .

web .

Outlook 2003
, , , Outlook 2003, doctype ( : <!DOCTYPE html …>)

doctype , , .


, , .

<style> .car-cont{ height:327px !important; max-height:327px !important; } .car-img{ max-height: none !important; width:auto !important; height: auto !important; display: none; } .car-img-1{ clear:left; display:block; } .car-thumb, .car-thumb img { display: inline-block; float: left; max-height: none !important; width:87px; height:65px !important; cursor: pointer; } .car-thumb:hover + .car-img { clear:both; display:block !important; } } @media screen and (max-device-width: 1024px) { div[class].car-img{ position: absolute; left:0px; top: 65px; } div[class].car-thumb:hover + .car-img { z-index:2; } </style> <table cellpadding=0 border=0 cellspacing=0 style="border-spacing:0px;border-collapse: collapse;"> <tr><td background="http://freshinbox.com/examples/carousel/images/thumbs-background.jpg"> <div class="car-cont" style="width:350px;height:263px;max-height:263px;overflow:hidden;position:relative;"> <div style="mso-hide:all;"> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-table.jpg" width="350" height="263" border="0" style="display:block;"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-pool.jpg" width="350" height="263" border="0" style="display:block;"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-balcony.jpg" width="350" height="263" border="0" style="display:block;"></div> </div> <div class="car-img car-img-1"><a href="http://www.omnihotels.com/FindAHotel/AmeliaIsland.aspx"><img src="http://freshinbox.com/examples/carousel/images/i-bed.jpg" width="350" height="263" border="0" alt="Hotel" style="display:block;"></a></div> </div> </td></tr></table>

. , , Yahoo! Mail, Outlook.com, AOL Outlook 2003.
Gmail , email-!

. ( ), «overflow» hidden . , div .

:

[ 1] [ 2] [ 2 – ] [ 3] [ 3 - ] [ 4] [ 4 - ] [ 1]
( ):



1 –
, , .

2 – 2, 3, 4
, (+), . , 3 4 .

3 4. , , , .. .


2, 3 4 , ?

, , . 4 « » . , . , , .

web .

Outlook 2003
, , , Outlook 2003, doctype ( : <!DOCTYPE html …>)

doctype , , .


, , .

<style> .car-cont{ height:327px !important; max-height:327px !important; } .car-img{ max-height: none !important; width:auto !important; height: auto !important; display: none; } .car-img-1{ clear:left; display:block; } .car-thumb, .car-thumb img { display: inline-block; float: left; max-height: none !important; width:87px; height:65px !important; cursor: pointer; } .car-thumb:hover + .car-img { clear:both; display:block !important; } } @media screen and (max-device-width: 1024px) { div[class].car-img{ position: absolute; left:0px; top: 65px; } div[class].car-thumb:hover + .car-img { z-index:2; } </style> <table cellpadding=0 border=0 cellspacing=0 style="border-spacing:0px;border-collapse: collapse;"> <tr><td background="http://freshinbox.com/examples/carousel/images/thumbs-background.jpg"> <div class="car-cont" style="width:350px;height:263px;max-height:263px;overflow:hidden;position:relative;"> <div style="mso-hide:all;"> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-table.jpg" width="350" height="263" border="0" style="display:block;"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-pool.jpg" width="350" height="263" border="0" style="display:block;"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-balcony.jpg" width="350" height="263" border="0" style="display:block;"></div> </div> <div class="car-img car-img-1"><a href="http://www.omnihotels.com/FindAHotel/AmeliaIsland.aspx"><img src="http://freshinbox.com/examples/carousel/images/i-bed.jpg" width="350" height="263" border="0" alt="Hotel" style="display:block;"></a></div> </div> </td></tr></table>

. , , Yahoo! Mail, Outlook.com, AOL Outlook 2003.
Gmail , email-!

. ( ), «overflow» hidden . , div .

:

[ 1] [ 2] [ 2 – ] [ 3] [ 3 - ] [ 4] [ 4 - ] [ 1]
( ):



1 –
, , .

2 – 2, 3, 4
, (+), . , 3 4 .

3 4. , , , .. .


2, 3 4 , ?

, , . 4 « » . , . , , .

web .

Outlook 2003
, , , Outlook 2003, doctype ( : <!DOCTYPE html …>)

doctype , , .


, , .

<style> .car-cont{ height:327px !important; max-height:327px !important; } .car-img{ max-height: none !important; width:auto !important; height: auto !important; display: none; } .car-img-1{ clear:left; display:block; } .car-thumb, .car-thumb img { display: inline-block; float: left; max-height: none !important; width:87px; height:65px !important; cursor: pointer; } .car-thumb:hover + .car-img { clear:both; display:block !important; } } @media screen and (max-device-width: 1024px) { div[class].car-img{ position: absolute; left:0px; top: 65px; } div[class].car-thumb:hover + .car-img { z-index:2; } </style> <table cellpadding=0 border=0 cellspacing=0 style="border-spacing:0px;border-collapse: collapse;"> <tr><td background="http://freshinbox.com/examples/carousel/images/thumbs-background.jpg"> <div class="car-cont" style="width:350px;height:263px;max-height:263px;overflow:hidden;position:relative;"> <div style="mso-hide:all;"> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-table.jpg" width="350" height="263" border="0" style="display:block;"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-pool.jpg" width="350" height="263" border="0" style="display:block;"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-balcony.jpg" width="350" height="263" border="0" style="display:block;"></div> </div> <div class="car-img car-img-1"><a href="http://www.omnihotels.com/FindAHotel/AmeliaIsland.aspx"><img src="http://freshinbox.com/examples/carousel/images/i-bed.jpg" width="350" height="263" border="0" alt="Hotel" style="display:block;"></a></div> </div> </td></tr></table>

. , , Yahoo! Mail, Outlook.com, AOL Outlook 2003.
Gmail , email-!

. ( ), «overflow» hidden . , div .

:

[ 1] [ 2] [ 2 – ] [ 3] [ 3 - ] [ 4] [ 4 - ] [ 1]
( ):



1 –
, , .

2 – 2, 3, 4
, (+), . , 3 4 .

3 4. , , , .. .


2, 3 4 , ?

, , . 4 « » . , . , , .

web .

Outlook 2003
, , , Outlook 2003, doctype ( : <!DOCTYPE html …>)

doctype , , .


, , .

<style> .car-cont{ height:327px !important; max-height:327px !important; } .car-img{ max-height: none !important; width:auto !important; height: auto !important; display: none; } .car-img-1{ clear:left; display:block; } .car-thumb, .car-thumb img { display: inline-block; float: left; max-height: none !important; width:87px; height:65px !important; cursor: pointer; } .car-thumb:hover + .car-img { clear:both; display:block !important; } } @media screen and (max-device-width: 1024px) { div[class].car-img{ position: absolute; left:0px; top: 65px; } div[class].car-thumb:hover + .car-img { z-index:2; } </style> <table cellpadding=0 border=0 cellspacing=0 style="border-spacing:0px;border-collapse: collapse;"> <tr><td background="http://freshinbox.com/examples/carousel/images/thumbs-background.jpg"> <div class="car-cont" style="width:350px;height:263px;max-height:263px;overflow:hidden;position:relative;"> <div style="mso-hide:all;"> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-table.jpg" width="350" height="263" border="0" style="display:block;"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-pool.jpg" width="350" height="263" border="0" style="display:block;"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-balcony.jpg" width="350" height="263" border="0" style="display:block;"></div> </div> <div class="car-img car-img-1"><a href="http://www.omnihotels.com/FindAHotel/AmeliaIsland.aspx"><img src="http://freshinbox.com/examples/carousel/images/i-bed.jpg" width="350" height="263" border="0" alt="Hotel" style="display:block;"></a></div> </div> </td></tr></table>


. , , Yahoo! Mail, Outlook.com, AOL Outlook 2003.
Gmail , email-!
. ( ), «overflow» hidden . , div .

:

[ 1] [ 2] [ 2 – ] [ 3] [ 3 - ] [ 4] [ 4 - ] [ 1]
( ):



1 –
, , .

2 – 2, 3, 4
, (+), . , 3 4 .

3 4. , , , .. .


2, 3 4 , ?

, , . 4 « » . , . , , .

web .

Outlook 2003
, , , Outlook 2003, doctype ( : <!DOCTYPE html …>)

doctype , , .


, , .

<style> .car-cont{ height:327px !important; max-height:327px !important; } .car-img{ max-height: none !important; width:auto !important; height: auto !important; display: none; } .car-img-1{ clear:left; display:block; } .car-thumb, .car-thumb img { display: inline-block; float: left; max-height: none !important; width:87px; height:65px !important; cursor: pointer; } .car-thumb:hover + .car-img { clear:both; display:block !important; } } @media screen and (max-device-width: 1024px) { div[class].car-img{ position: absolute; left:0px; top: 65px; } div[class].car-thumb:hover + .car-img { z-index:2; } </style> <table cellpadding=0 border=0 cellspacing=0 style="border-spacing:0px;border-collapse: collapse;"> <tr><td background="http://freshinbox.com/examples/carousel/images/thumbs-background.jpg"> <div class="car-cont" style="width:350px;height:263px;max-height:263px;overflow:hidden;position:relative;"> <div style="mso-hide:all;"> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-table.jpg" width="350" height="263" border="0" style="display:block;"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-pool.jpg" width="350" height="263" border="0" style="display:block;"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-balcony.jpg" width="350" height="263" border="0" style="display:block;"></div> </div> <div class="car-img car-img-1"><a href="http://www.omnihotels.com/FindAHotel/AmeliaIsland.aspx"><img src="http://freshinbox.com/examples/carousel/images/i-bed.jpg" width="350" height="263" border="0" alt="Hotel" style="display:block;"></a></div> </div> </td></tr></table>


. , , Yahoo! Mail, Outlook.com, AOL Outlook 2003.
Gmail , email-!

. ( ), «overflow» hidden . , div .

:

[ 1] [ 2] [ 2 – ] [ 3] [ 3 - ] [ 4] [ 4 - ] [ 1]
( ):



1 –
, , .

2 – 2, 3, 4
, (+), . , 3 4 .

3 4. , , , .. .


2, 3 4 , ?

, , . 4 « » . , . , , .

web .

Outlook 2003
, , , Outlook 2003, doctype ( : <!DOCTYPE html …>)

doctype , , .


, , .

<style> .car-cont{ height:327px !important; max-height:327px !important; } .car-img{ max-height: none !important; width:auto !important; height: auto !important; display: none; } .car-img-1{ clear:left; display:block; } .car-thumb, .car-thumb img { display: inline-block; float: left; max-height: none !important; width:87px; height:65px !important; cursor: pointer; } .car-thumb:hover + .car-img { clear:both; display:block !important; } } @media screen and (max-device-width: 1024px) { div[class].car-img{ position: absolute; left:0px; top: 65px; } div[class].car-thumb:hover + .car-img { z-index:2; } </style> <table cellpadding=0 border=0 cellspacing=0 style="border-spacing:0px;border-collapse: collapse;"> <tr><td background="http://freshinbox.com/examples/carousel/images/thumbs-background.jpg"> <div class="car-cont" style="width:350px;height:263px;max-height:263px;overflow:hidden;position:relative;"> <div style="mso-hide:all;"> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-table.jpg" width="350" height="263" border="0" style="display:block;"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-pool.jpg" width="350" height="263" border="0" style="display:block;"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-balcony.jpg" width="350" height="263" border="0" style="display:block;"></div> </div> <div class="car-img car-img-1"><a href="http://www.omnihotels.com/FindAHotel/AmeliaIsland.aspx"><img src="http://freshinbox.com/examples/carousel/images/i-bed.jpg" width="350" height="263" border="0" alt="Hotel" style="display:block;"></a></div> </div> </td></tr></table>


. , , Yahoo! Mail, Outlook.com, AOL Outlook 2003.
Gmail , email-!

. ( ), «overflow» hidden . , div .

:

[ 1] [ 2] [ 2 – ] [ 3] [ 3 - ] [ 4] [ 4 - ] [ 1]
( ):



1 –
, , .

2 – 2, 3, 4
, (+), . , 3 4 .

3 4. , , , .. .


2, 3 4 , ?

, , . 4 « » . , . , , .

web .

Outlook 2003
, , , Outlook 2003, doctype ( : <!DOCTYPE html …>)

doctype , , .


, , .

<style> .car-cont{ height:327px !important; max-height:327px !important; } .car-img{ max-height: none !important; width:auto !important; height: auto !important; display: none; } .car-img-1{ clear:left; display:block; } .car-thumb, .car-thumb img { display: inline-block; float: left; max-height: none !important; width:87px; height:65px !important; cursor: pointer; } .car-thumb:hover + .car-img { clear:both; display:block !important; } } @media screen and (max-device-width: 1024px) { div[class].car-img{ position: absolute; left:0px; top: 65px; } div[class].car-thumb:hover + .car-img { z-index:2; } </style> <table cellpadding=0 border=0 cellspacing=0 style="border-spacing:0px;border-collapse: collapse;"> <tr><td background="http://freshinbox.com/examples/carousel/images/thumbs-background.jpg"> <div class="car-cont" style="width:350px;height:263px;max-height:263px;overflow:hidden;position:relative;"> <div style="mso-hide:all;"> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-table.jpg" width="350" height="263" border="0" style="display:block;"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-pool.jpg" width="350" height="263" border="0" style="display:block;"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-balcony.jpg" width="350" height="263" border="0" style="display:block;"></div> </div> <div class="car-img car-img-1"><a href="http://www.omnihotels.com/FindAHotel/AmeliaIsland.aspx"><img src="http://freshinbox.com/examples/carousel/images/i-bed.jpg" width="350" height="263" border="0" alt="Hotel" style="display:block;"></a></div> </div> </td></tr></table>


. , , Yahoo! Mail, Outlook.com, AOL Outlook 2003.
Gmail , email-!
  1. . ( ), «overflow» hidden . , div .

    :

    [ 1] [ 2] [ 2 – ] [ 3] [ 3 - ] [ 4] [ 4 - ] [ 1]
    ( ):



    1 –
    , , .

    2 – 2, 3, 4
    , (+), . , 3 4 .

    3 4. , , , .. .


    2, 3 4 , ?

    , , . 4 « » . , . , , .

    web .

    Outlook 2003
    , , , Outlook 2003, doctype ( : <!DOCTYPE html …>)

    doctype , , .


    , , .

    <style> .car-cont{ height:327px !important; max-height:327px !important; } .car-img{ max-height: none !important; width:auto !important; height: auto !important; display: none; } .car-img-1{ clear:left; display:block; } .car-thumb, .car-thumb img { display: inline-block; float: left; max-height: none !important; width:87px; height:65px !important; cursor: pointer; } .car-thumb:hover + .car-img { clear:both; display:block !important; } } @media screen and (max-device-width: 1024px) { div[class].car-img{ position: absolute; left:0px; top: 65px; } div[class].car-thumb:hover + .car-img { z-index:2; } </style> <table cellpadding=0 border=0 cellspacing=0 style="border-spacing:0px;border-collapse: collapse;"> <tr><td background="http://freshinbox.com/examples/carousel/images/thumbs-background.jpg"> <div class="car-cont" style="width:350px;height:263px;max-height:263px;overflow:hidden;position:relative;"> <div style="mso-hide:all;"> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-table.jpg" width="350" height="263" border="0" style="display:block;"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-pool.jpg" width="350" height="263" border="0" style="display:block;"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-balcony.jpg" width="350" height="263" border="0" style="display:block;"></div> </div> <div class="car-img car-img-1"><a href="http://www.omnihotels.com/FindAHotel/AmeliaIsland.aspx"><img src="http://freshinbox.com/examples/carousel/images/i-bed.jpg" width="350" height="263" border="0" alt="Hotel" style="display:block;"></a></div> </div> </td></tr></table>


    . , , Yahoo! Mail, Outlook.com, AOL Outlook 2003.
    Gmail , email-!
  2. . ( ), «overflow» hidden . , div .

    :

    [ 1] [ 2] [ 2 – ] [ 3] [ 3 - ] [ 4] [ 4 - ] [ 1]
    ( ):



    1 –
    , , .

    2 – 2, 3, 4
    , (+), . , 3 4 .

    3 4. , , , .. .


    2, 3 4 , ?

    , , . 4 « » . , . , , .

    web .

    Outlook 2003
    , , , Outlook 2003, doctype ( : <!DOCTYPE html …>)

    doctype , , .


    , , .

    <style> .car-cont{ height:327px !important; max-height:327px !important; } .car-img{ max-height: none !important; width:auto !important; height: auto !important; display: none; } .car-img-1{ clear:left; display:block; } .car-thumb, .car-thumb img { display: inline-block; float: left; max-height: none !important; width:87px; height:65px !important; cursor: pointer; } .car-thumb:hover + .car-img { clear:both; display:block !important; } } @media screen and (max-device-width: 1024px) { div[class].car-img{ position: absolute; left:0px; top: 65px; } div[class].car-thumb:hover + .car-img { z-index:2; } </style> <table cellpadding=0 border=0 cellspacing=0 style="border-spacing:0px;border-collapse: collapse;"> <tr><td background="http://freshinbox.com/examples/carousel/images/thumbs-background.jpg"> <div class="car-cont" style="width:350px;height:263px;max-height:263px;overflow:hidden;position:relative;"> <div style="mso-hide:all;"> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-table.jpg" width="350" height="263" border="0" style="display:block;"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-pool.jpg" width="350" height="263" border="0" style="display:block;"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-balcony.jpg" width="350" height="263" border="0" style="display:block;"></div> </div> <div class="car-img car-img-1"><a href="http://www.omnihotels.com/FindAHotel/AmeliaIsland.aspx"><img src="http://freshinbox.com/examples/carousel/images/i-bed.jpg" width="350" height="263" border="0" alt="Hotel" style="display:block;"></a></div> </div> </td></tr></table>


    . , , Yahoo! Mail, Outlook.com, AOL Outlook 2003.
    Gmail , email-!
. ( ), «overflow» hidden . , div .

:

[ 1] [ 2] [ 2 – ] [ 3] [ 3 - ] [ 4] [ 4 - ] [ 1]
( ):



1 –
, , .

2 – 2, 3, 4
, (+), . , 3 4 .

3 4. , , , .. .


2, 3 4 , ?

, , . 4 « » . , . , , .

web .

Outlook 2003
, , , Outlook 2003, doctype ( : <!DOCTYPE html …>)

doctype , , .


, , .

<style> .car-cont{ height:327px !important; max-height:327px !important; } .car-img{ max-height: none !important; width:auto !important; height: auto !important; display: none; } .car-img-1{ clear:left; display:block; } .car-thumb, .car-thumb img { display: inline-block; float: left; max-height: none !important; width:87px; height:65px !important; cursor: pointer; } .car-thumb:hover + .car-img { clear:both; display:block !important; } } @media screen and (max-device-width: 1024px) { div[class].car-img{ position: absolute; left:0px; top: 65px; } div[class].car-thumb:hover + .car-img { z-index:2; } </style> <table cellpadding=0 border=0 cellspacing=0 style="border-spacing:0px;border-collapse: collapse;"> <tr><td background="http://freshinbox.com/examples/carousel/images/thumbs-background.jpg"> <div class="car-cont" style="width:350px;height:263px;max-height:263px;overflow:hidden;position:relative;"> <div style="mso-hide:all;"> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-table.jpg" width="350" height="263" border="0" style="display:block;"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-pool.jpg" width="350" height="263" border="0" style="display:block;"></div> <div class="car-thumb" style="max-height:0px;height:0px;overflow:hidden;"><img src="1450830772262620261274"></div> <div class="car-img" style="max-height:0px;height:0px;overflow:hidden;"><img src="http://freshinbox.com/examples/carousel/images/i-balcony.jpg" width="350" height="263" border="0" style="display:block;"></div> </div> <div class="car-img car-img-1"><a href="http://www.omnihotels.com/FindAHotel/AmeliaIsland.aspx"><img src="http://freshinbox.com/examples/carousel/images/i-bed.jpg" width="350" height="263" border="0" alt="Hotel" style="display:block;"></a></div> </div> </td></tr></table>


. , , Yahoo! Mail, Outlook.com, AOL Outlook 2003.
Gmail , email-!

Source: https://habr.com/ru/post/267565/


All Articles