- Home
- Categorie
- Coding e Sistemistica
- HTML e CSS
- Posizionare diversamente i div
-
Posizionare diversamente i div
Salve,
io vorrei sapere se è possibile far flottare un div A a sx e un div B a dx all'interno di un contenitore, mettendo però all'interno del codice il div B prima del div A. Si può fare?Grazie.
-
Intendi una cosa cosi?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>prova</title> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <style type="text/css"> html,body { margin:0px; padding:0px; color:#ffffff; font-size:30px; font-weight:bold; } #contenitore { border:2px solid #000; height:500px; } #destro { width:200px; height:200px; background:#cccccc; float:right; } #sinistro { width:200px; height:200px; background:#444444; float:left; } </style> </head> <body> <div id="contenitore"> <div id="destro">DESTRO</div> <div id="sinistro">SINISTRO</div> </div> </body> </html>