Posts

Showing posts with the label CSS Table Alignment

html alignment tag Tutorial top, middle, bottom Alignment in tables

Image
HTML Alignment Tag Tutorial :- Top, Middle, Bottom Alignment in Tables HTML Text Alignment Examples The HTML <td> tag valign Attribute is use to specify the vertical alignment of  the text content in a cell. Attribute Value top -  It set the content to top-align. middle - It sets the content to middle-align. Bottom -is the sets of  content to bottom-align. HTML Text Alignment Examples 1) Example <! Doctype html> <html> <body> <table  height="300" width="500" Border="2" Bordercolor="red">  <caption> Use of Verticle Alignment Attribute of Table</caption>  <tr> <td valign="Top">Top Align content</td> <td valign="Center">Center Align content </td>  <td valign="Bottom">Bottom Align content</td>  </tr> </table> </body> </html> HTML Text Alignment Examples Explain Program Step 1 ] <!Doctype html> <!doctype ht...