<html>
<head>
<style>
body {
background-color: #ffffff;
}
.hover-title {
display: inline;
pointer-events: auto;
cursor: pointer;
font-family: Times New Roman;
font-size: 10px;
}
.hover-image {
display: none;
}
body:not(.mobile) .hover-title:hover + .hover-image {
display: flex;
pointer-events: none;
}
.hover-image {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 0;
pointer-events: none;
flex-direction: column;
align-items: center;
justify-content: center;
width: 95vw;
height: 95vh;
}
.hover-image img {
max-width: 100%;
max-height: 100%;
width: auto;
height: auto;
margin-bottom: 0;
}
</style>
</head>
<body>
<div align=center>
<table border=1>
<tr>
<td>
<p align=center class="hover-title">
<b>Image (image mouseover centrée sur page)</b>
</p>
<div class="hover-image">
<img src="image.gif">
</div>
</td>
<td width=200 valign=top style='width:8.0cm'>
<p style='margin-bottom:0cm;line-height:normal'>
<span style='font-size:8.0pt;color:#000000'>Bla bla</span>
<div class="hover-title">
<b>TexteZ (image mouseover centrée sur page)</b>
</div>
<div class="hover-image">
<img src="zoom.png">
</div>
</p>
</td>
</tr>
</table>
</div>
</body>
</html>