MyTetra Share
Делитесь знаниями!
- Centering Content
Время создания: 01.10.2017 10:51
Раздел: HTML
Запись: xintrea/mytetra_db_mcold/master/base/1506844309nwliz3ybms/text.html на raw.githubusercontent.com

Centering Content

You can use <center> tag to put any content in the center of the page or any table cell.

Example

<!DOCTYPE html>
<html>

   <head>
      <title>Centring Content Example</title>
   </head>
	
   <body>
      <p>This text is not in the center.</p>
      
      <center>
         <p>This text is in the center.</p>
      </center>
   </body>
	
</html>

This will produce following result −


This text is not in the center.

This text is in the center.

Так же в этом разделе: