Cet article présente principalement l'exemple de code de positionnement fixe en html. Les étudiants intéressés par les didacticiels html peuvent s'y référer.
<html> <head> <title>123</title> <style> #sub1{ width:50px; height:80px; border:1px solid #dcdcdc; } #sub2{ position:fixed; top:250px; right:20px; width:50px; height:80px; border:1px solid #dcdcdc; margin-top:5px; } #sub3{ width:250px; height:880px; border:1px solid #dcdcdc; margin-top:5px; } </style> </head> <body> <p id="parent"> <p id="sub1">sub1</p> <p id="sub2">sub2</p> <p id="sub3">sub1</p> </p> </body> </html>
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!