CODE POUR EMPÊCHER LE DÉBORDEMENT
Sun Mar 30 2025 09:32:49 GMT+0000 (Coordinated Universal Time)
Saved by
@Etiennette
<style>
/* Empêche le débordement horizontal */
html, body {
margin: 0;
padding: 0;
overflow-x: hidden;
}
/* Assurez-vous que les conteneurs respectent la largeur de l'écran */
* {
box-sizing: border-box;
}
/* Correction pour les éléments qui pourraient déborder */
img, iframe, .container, .row, .section {
max-width: 100%;
width: 100%;
}
</style>
content_copyCOPY
Comments