

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Is it possible to have an HTML canvas element in the background of my page?
Yes, try to set the CSS style with position: fixed (or absolute):
canvas{ position:absolute; left:0; top:0; z-index:-1; }
You can also set it to the following:
<style> #canvasSection{ position:fixed; } </style>
- Related Questions & Answers
- How to display the background color of an element in HTML?
- Is it possible to have a HTML SELECT/OPTION value as NULL using PHP?
- Is it possible to change the HTML content in JavaScript?
- Is it possible to have a function-based index in MySQL?
- Is it possible to have JavaScript split() start at index 1?
- Is it possible to have View and table with the same name in MySQL?
- Is it possible to resize an array in C#
- How to completely fill web page with HTML canvas?
- How safe is it to have an Instagram account?
- Splitting up an HTML page and loading it through header?
- Is it possible to manually set the attribute value of a Web Element using Selenium?
- Find if it's possible to rotate the page by an angle or not in C++
- Set the background color of an element with CSS
- Set the background image of an element with CSS
- Is it possible to use JSF+Facelets with HTML 4/5?
Advertisements