HTML CSS Reference/HTML Attributes Reference/align iframe table

Материал из Web эксперт
Перейти к: навигация, поиск

"align" Example

    
<HTML>
<Title>Example For align</Title>
<BODY>
<table border="1" align="center">
   <tr>
      <td>Cell 1 content</td>
      <td>Cell 2 content</td>
      <td>Cell 3 content</td>
   </tr>
</table>
</BODY>
</HTML>



align is applied to

+----------------+--------------------------------------------------------------+
| Applied_To     |<iframe>                        <table>                       |
+----------------+--------------------------------------------------------------+



"align" Syntax and Note

Note:
  
This attribute specifies the horizontal alignment of the <table> and <iframe>. 
Possible values include left, right,and center.
    
Syntax:
    
<element align="value"> . . . </element>