
- HTML Tutorial
- HTML - Home
- HTML - Overview
- HTML - Basic Tags
- HTML - Elements
- HTML - Attributes
- HTML - Formatting
- HTML - Phrase Tags
- HTML - Meta Tags
- HTML - Comments
- HTML - Images
- HTML - Tables
- HTML - Lists
- HTML - Text Links
- HTML - Image Links
- HTML - Email Links
- HTML - Frames
- HTML - Iframes
- HTML - Blocks
- HTML - Backgrounds
- HTML - Colors
- HTML - Fonts
- HTML - Forms
- HTML - Embed Multimedia
- HTML - Marquees
- HTML - Header
- HTML - Style Sheet
- HTML - Javascript
- HTML - Layouts
- HTML References
- HTML - Tags Reference
- HTML - Attributes Reference
- HTML - Events Reference
- HTML - Fonts Reference
- HTML - ASCII Codes
- ASCII Table Lookup
- HTML - Color Names
- HTML - Entities
- HTML - Fonts Ref
- HTML - Events Ref
- MIME Media Types
- HTML - URL Encoding
- Language ISO Codes
- HTML - Character Encodings
- HTML - Deprecated Tags
HTML5 Canvas & z-index issue in Google Chrome
When we apply z index to a canvas whose position is fixed, it stop causes chrome to render all other elements which have position:fixed properly. This only happens if canvas is greater than 256X256 px in size.
Wrap both h1 and canvas with the fixed div and solves the issue −
<div id = 'fixcontainer'> <h1>Test Title</h1> <canvas id = "backgroundCanvas" width = "1000" height = "300"></canvas> </div>
The following is the CSS −
h1{ position: fixed; } body{ height: 1500px; } canvas{ position: fixed; z-index: -10; }
- Related Articles
- Cross domain HTML5 iframe issue
- Ok google a google voice search on chrome beta
- How to Install Google Chrome in Ubuntu
- How to set Google Chrome in WebDriver?
- Top Keyboard Shortcuts for Google Chrome
- Translating HTML5 canvas
- HTML5 Canvas distorted
- HTML5 Canvas Transformation
- How to use Google Chrome Virus Scanner?
- How to disable Google Chrome autofill option?
- Composition attribute in HTML5 Canvas?
- Chrome and HTML5 GeoLocation denial callback
- Cross origin HTML does not load in Google Chrome
- How to Clear the JavaScript Console in Google Chrome
- HTML5 Canvas Transformation Matrix

Advertisements