Certains amis ont laissé un message disant qu'ils avaient besoin d'un code js pour implémenter une adaptation partielle à l'écran. Je l'ai brièvement compilé ici et je l'ai publié pour tout le monde.
Document sans titre
<script><br>
var winWidth;<br>
window.onload=function(){<br>
si (window.innerWidth)<br>
winWidth = window.innerWidth;<br>
sinon si ((document.body) && (document.body.clientWidth))<br>
winWidth = document.body.clientWidth;<br>
si(winWidth<=1100)<br />
document.getElementById("main").style.width="880px";<br />
sinon if(winWidth>=1100)<br>
document.getElementById("main").style.width="1100px";<br>
><br>
window.onresize=fonction(){<br>
si (window.innerWidth)<br>
winWidth = window.innerWidth;<br>
sinon si ((document.body) && (document.body.clientWidth))<br>
winWidth = document.body.clientWidth;<br>
si(winWidth<=1100)<br />
document.getElementById("main").style.width="880px";<br />
sinon if(winWidth>=1100)<br>
document.getElementById("main").style.width="1100px";<br>
><br>
</script>
Essayez-le et voyez si cela fonctionne très bien. J'espère que vous l'aimerez tous.