28173 sujets

CSS et mise en forme, CSS3

Bonjour,

ça fait des heures que je me prends la tête la dessus


#list_prod .details3 {
	float: left;
	width: 9%;
}
#list_prod .details3 div {
	background: url(../images/ovale.gif) center left no-repeat;
font-size: 80%;
	color: #FFF;
	font-weight: bold;
	margin-top: 10px;
	min-width: 35px;
	min-height: 25px;
	position: relative;
}
#list_prod .details3 div span {
	vertical-align: middle;
}

<div class="details3"><div><span>texte</span></div></div>


Impossible de centrer ce foutu texte au milieu de mon image ovale en background !

Si quelqun a des pouvoirs en css Smiley smile
Merci
Salut,

essaye un truc du genre:

  <style type="text/css">

.details3 {
	float: left;
	width: 9%;
}

.details3 {
	background: red;
	font-size: 80%;
	color: #FFF;
	font-weight: bold;
	margin-top: 10px;
	min-width: 100px;
	height: 50px;
	text-align: center;
	position: relative;

}

 .details3 span {
	display: block;
	position: absolute;
	height: 20px;
    top: 50%;
	margin-top: -10px;
	left: 0;
	width: 100%;
	line-height: 18px;
}

  </style>
 
  
</head>
<body>
   
<div class="details3">
<span>texte</span>
</div>

</body>