HTML <table> align Attribute
The HTML <table> align Attribute is used to specify the alignment of the table and its content.
Note : This attribute is not supported by HTML5.
Syntax:
<table align="left | right | center">
Attribute Values:
- left: It sets the left align to the table. It is a default value.
- right: It sets the right align to the table.
- center: It sets the center align to the table.
Example:
<!DOCTYPE html> < html > < head > < title > HTML table align Attribute </ title > </ head > < body > < h1 style = "green" >GeeksforGeeks</ h1 > < h2 >HTML table align Attribute</ h2 > < table border = "1" align = "right" > < caption >Author Details</ caption > < tr > < th >NAME</ th > < th >AGE</ th > < th >BRANCH</ th > </ tr > < tr > < td >BITTU</ td > < td >22</ td > < td >CSE</ td > </ tr > < tr > < td >RAM</ td > < td >21</ td > < td >ECE</ td > </ tr > </ table > </ body > </ html > |
Output:
Supported Browsers: The browser supported by HTML <table> align attribute are listed below:
- Google Chrome
- Internet Explorer
- Firefox
- Safari
- Opera
HTML is the foundation of webpages, is used for webpage development by structuring websites and web apps.You can learn HTML from the ground up by following this HTML Tutorial and HTML Examples.
Please Login to comment...