So legen Sie ein festes Hintergrundbild fest

Beispielanalyse:

Das Attribut „background-attachment“ kann festlegen, ob das Hintergrundbild fixiert ist oder mit dem Rest der Seite scrollt.

Wenn der Wert des Attributs „background-attachment“ „fixed“ ist, ist das Hintergrundbild fixiert und scrollt nicht mit dem Rest der Seite.


Weiter lernen
||
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style> body { background-image:url('https://img.php.cn/upload/article/000/000/024/5c6a4428ea867709.png'); background-repeat:no-repeat; background-attachment:fixed; } </style> </head> <body> <p>背景图片是固定的,不会随页面的其余部分滚动。</p> <p>背景图片是固定的,不会随页面的其余部分滚动。</p> <p>背景图片是固定的,不会随页面的其余部分滚动。</p> <p>背景图片是固定的,不会随页面的其余部分滚动。</p> <p>背景图片是固定的,不会随页面的其余部分滚动。</p> <p>背景图片是固定的,不会随页面的其余部分滚动。</p> <p>背景图片是固定的,不会随页面的其余部分滚动。</p> <p>背景图片是固定的,不会随页面的其余部分滚动。</p> <p>背景图片是固定的,不会随页面的其余部分滚动。</p> <p>背景图片是固定的,不会随页面的其余部分滚动。</p> <p>背景图片是固定的,不会随页面的其余部分滚动。</p> <p>背景图片是固定的,不会随页面的其余部分滚动。</p> <p>背景图片是固定的,不会随页面的其余部分滚动。</p> <p>背景图片是固定的,不会随页面的其余部分滚动。</p> <p>背景图片是固定的,不会随页面的其余部分滚动。</p> <p>背景图片是固定的,不会随页面的其余部分滚动。</p> </body> </html>
einreichenCode zurücksetzen