- Home
- Categorie
- Coding e Sistemistica
- HTML e CSS
- Problema nel centrare i testi
-
Problema nel centrare i testi
Questo è il mio codice
<tr height="745" > <td bgcolor="white" valign="top"> <p>prova </p> <p>prova</p> <!-- Inserisco l'immagine--> <p>Prova</p> </td>
hXtp://img844.imageshack.us/img844/5648/immagine2vr.png
Praticamente a sinistra vorrei inserire un'immagine (una Gif)
A destra inserire del testo(quei 3 prova)
il problema e' che dovrei dividere in due questo spazio come faccio?
-
Meglio fare 2 celle in una stessa riga.
-
Non ho capito se l'effetto che vuoi è questo.
[PHP]
<html>
<head>
<title>Test</title>
<style type="text/css">
html,body
{
margin:0px auto;
padding:0px;
}
#div
{
border:1px solid red;
width:500px;
height:500px;
}
</style>
</head>
<body>
<div align="center">
<div id="div">
<img src="http://www.google.it/images/srpr/nav_logo14.png" align="right" />
dasdasdas das das das das dasd as
</div>
</div>
</body>
</html>
[/PHP]