HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> body{ height: 800px; } img{ position: fixed; } </style> </head> <body> <h1>CSS position Property</h1> <p>This is first paragraph.</p> <p>This is second paragraph.</p> <p>This is third paragraph.</p> <div> <img src="apple.png"> </div> <p><strong>Note</strong>: The position of the image is fixed. Try to scroll the page.</p> </body> </html>
OUTPUT
×

Save as Private