&am"/> &am">

Home  >  Article  >  Web Front-end  >  How to center canvas in HTML5?

How to center canvas in HTML5?

PHPz
PHPzforward
2023-09-01 14:53:021249browse

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.

Example

<!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!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete
Previous article:HTML DOM form collectionNext article:HTML DOM form collection