これはCSSの初心者です。私はこの2と混同しています...バックグラウンドアタッチメントの違いは何ですか? ?バックグラウンドアタッチメントの違い:固定と位置:固定
-1
A
答えて
0
<!DOCTYPE html>
<html>
<head>
<style>
body {
background-image: url('w3css.gif');
background-repeat: no-repeat;
background-attachment: fixed;
}
p{
position: fixed;
color:Red;
}
</style>
</head>
<body>
<p>The background-image is fixed. Try to scroll down the page.</p>
<p>The background-image is fixed. Try to scroll down the page.</p>
<p>The background-image is fixed. Try to scroll down the page.</p>
<p>The background-image is fixed. Try to scroll down the page.</p>
<p>The background-image is fixed. Try to scroll down the page.</p>
<p>The background-image is fixed. Try to scroll down the page.</p>
<p>The background-image is fixed. Try to scroll down the page.</p>
<p>The background-image is fixed. Try to scroll down the page.</p>
<p>The background-image is fixed. Try to scroll down the page.</p>
<p>The background-image is fixed. Try to scroll down the page.</p>
<p>The background-image is fixed. Try to scroll down the page.</p>
<p>The background-image is fixed. Try to scroll down the page.</p>
<p>The background-image is fixed. Try to scroll down the page.</p>
<p>The background-image is fixed. Try to scroll down the page.</p>
<p>The background-image is fixed. Try to scroll down the page.</p>
<p>If you do not see any scrollbars, try to resize the browser window.</p>
</body>
</html>
背景取付:固定は、イメージ位置として位置決めするためのものである:固定します。 p、span、divのような要素です。
+0
私はそれを...ありがとうございました...))) –
+0
お元気ですか:ごめんなさい、私は最初に質問を誤解しました。それは私がそれが質問ではなかったとコメントした理由:( –
+0
悩んでいない仲間: ) –
関連する問題
- 1. 位置の違い:粘着性と位置:固定?
- 2. 固定位置は
- 3. ナビゲーションバー - 固定位置
- 4. div固定位置
- 5. 固定位置f
- 6. 位置固定サイドバーとセンタリングコンテンツ
- 7. 位置固定と絶対
- 8. バックグラウンドアタッチメント:IMGの固定等価物
- 9. 固定位置内の絶対位置
- 10. graphviz - 固定ノードの位置
- 11. Android webviewの位置:固定
- 12. 固定位置メニューのオーバーラップ
- 13. 位置:IE9の固定ブレーク
- 14. モバイルブラウザの固定位置
- 15. CSSの位置:固定ヘッダ
- 16. blackberry CSSの位置:固定
- 17. モバイルクロムの固定位置
- 18. 固定スクロールバーの位置?
- 19. インターネットエクスプローラでの位置固定
- 20. iPhone/iPodの位置固定
- 21. パネルの固定位置
- 22. CSSの位置:固定
- 23. 固定位置のJFrameレイアウト
- 24. Chromeでの位置固定
- 25. CSSの位置固定
- 26. 固定位置のdiv
- 27. htmlの位置固定ヘッダー
- 28. Chrome CSSの位置:固定
- 29. 固定位置が固定されていない
- 30. ie6オーバーレイ位置:固定スクロール
だから何ですか? –
は答えを投稿しました。 –
WEB上で 'background-attachment:fixed'と' position:fixed'を検索して何が見つかるのを見てみませんか? –