Affiancare due immagini con due <div> usando lo stile stile float:left
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>test div</title> </head> <body> <div style="float:left; margin-right:1em;"> <img src="images/myimage01.jpg"/> </div> <div style="float:left; margin-right:1em;"> <img src="images/myimage02.jpg"/> </div> </body> </html>
- have fun -