HTML/CSS/CSS Attributes and Javascript Style Properties/caption

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

Table caption tag

   <source lang="html4strict">

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /> <title>Basic Table 3</title> </head> <body>

Personal details
N P
P O
V B
L L
E P

</body> </html>

</source>
   
  


The caption-side Property

   <source lang="html4strict">

Value Purpose top The caption will appear above the table (the default). right The caption will appear to the right of the table. bottom The caption will appear below the table. left The caption will appear on the left side of the table.

</source>