Cet article vous présente principalement comment utiliser l'attribut background attachment background-attachment en CSS pour définir si l'image d'arrière-plan défile avec l'objet ou reste fixe. Les amis qui en ont besoin peuvent s'y référer
<.> 1. Attribut Background-attachment
En CSS, vous pouvez utiliser l'attribut background-attachment background-attachment pour définir si l'image d'arrière-plan défile avec l'objet ou reste fixe.Syntaxe :
background-attachment:scroll/fixed;
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title></title> <style type="text/css"> #p1 { width:160px; height:1200px; border:1px solid gray; background-image:url("cartoongirl.gif"); background-repeat:no-repeat; background-attachment:fixed; } </style> </head> <body> <p id="p1"></p> </body> </html>
Simuler l'effet de box-shadow en CSS3 sous IE
À propos de l'utilisation d'une image d'arrière-plan dans css Idées d'implémentation pour créer un menu de navigation
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!