Advertisement
piffy

HTML img align

Aug 1st, 2013
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.32 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Allineamento immagini</title>
  5. </head>
  6. <body>
  7.         <table border="1">
  8.           <tr>
  9.               <th width="50%">HTML</th>
  10.               <th width="50%">Esempio</th>
  11.           </tr>
  12.           <tr>
  13.               <td>&lt;img src=&quot;w3c_small.jpg&quot; align=&quot;top&quot;&gt;</td>
  14.               <td><img src="w3c_small.jpg" align="top"> Ecco un esempio di testo poco interessante, usato solo per mostrare come funziona.</td>
  15.           </tr>
  16.           <tr>
  17.               <td>&lt;img src=&quot;w3c_small.jpg&quot; align=&quot;left&quot;&gt;</td>
  18.               <td><img src="w3c_small.jpg" align="left"> Ecco un esempio di testo poco interessante, usato solo per mostrare come funziona.</td>
  19.           </tr>
  20.           <tr>
  21.               <td>&lt;img src=&quot;w3c_small.jpg&quot; align=&quot;right&quot;&gt;</td>
  22.               <td><img src="w3c_small.jpg" align="right"> Ecco un esempio di testo poco interessante, usato solo per mostrare come funziona.</td>
  23.           </tr>
  24.           <tr>
  25.               <td>&lt;img src=&quot;w3c_small.jpg&quot; align=&quot;bottom&quot;&gt;</td>
  26.               <td><img src="w3c_small.jpg" align="bottom"> Ecco un esempio di testo poco interessante, usato solo per mostrare come funziona.</td>
  27.           </tr>
  28.         </table>
  29. </body>
  30. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement