&am"/> &am">
Home > Article > Web Front-end > How to center canvas in HTML5?
To center the canvas in HTML 5, include the canvas tag inside the div tag. Then we can center align the div tag. By doing this, the canvas will also be centered.
<!DOCTYPE html>. <html> <body> <div style = "text-align:center;"> <canvas style = "background-color:GREEN;">This is my canvas</canvas> </div> </body> </html>
The above is the detailed content of How to center canvas in HTML5?. For more information, please follow other related articles on the PHP Chinese website!