28173 sujets

CSS et mise en forme, CSS3

Bonjour

J'ai placé un logo à gauche dans une div, le texte entoure ce logo, le souhaiterai mettre un espace autour du logo....?

La div #gauche
Le logo est dans .gauche


  #gauche{
float: left;  
margin-left:10px; 
padding-left: 20px; 
padding-top: 20px; 
width: 580px;   
overflow: hidden;
}
.gauche {
float: left;
  } 


Merci
Bonne journée
Modifié par africa (18 Dec 2006 - 11:13)
Bonjour,

Quelque chose comme ceci?


<?xml version="1.0" encoding="utf-8"?>

<!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" xml:lang="fr">



<head>

	<title>Ma page</title>

	<style type="text/css" media="screen">
	
	h1 {width:largeur; height:hauteur; float:left; margin-right:1em;}
	
	</style>
	
	
</head>



<body>

<h1><img src="logo.png" alt="Titre de section" /></h1>

<p>Ton texte</p>

</body>
</html>
Benjamin D.C. a écrit :
Bonjour,

Quelque chose comme ceci?


<?xml version="1.0" encoding="utf-8"?>

<!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" xml:lang="fr">



<head>

	<title>Ma page</title>

	<style type="text/css" media="screen">
	
	h1 {width:largeur; height:hauteur; float:left; margin-right:1em;}
	
	</style>
	
	
</head>



<body>



<h1><img src="logo.png" alt="Titre de section" /></h1>

<p>Ton texte</p>

</body>
</html>




Merci, cela fonctionne parfaitement Smiley biggrin
Modifié par africa (18 Dec 2006 - 11:14)