Version bien mieux du redimensionnement des images

This commit is contained in:
Hugo Roussille 2016-09-20 23:32:42 +02:00
parent 2bae32a105
commit e0544a42e8

View file

@ -32,6 +32,10 @@
font-weight: 700; font-weight: 700;
color: #5a5a5a; color: #5a5a5a;
} }
img{
max-width: 100%;
}
</style> </style>
<meta charset="utf8" /> <meta charset="utf8" />
</head> </head>
@ -75,7 +79,7 @@
<script> <script>
// Correction de la taille des images // Correction de la taille des images
$(document).ready(function() { /*$(document).ready(function() {
$(".descTable").each(function() { $(".descTable").each(function() {
$(this).width($("body").width()); $(this).width($("body").width());
}); });
@ -101,7 +105,7 @@
$(this).height(origHeight); $(this).height(origHeight);
} }
}); });
}); });*/
</script> </script>