28172 sujets

CSS et mise en forme, CSS3

Bonjour
J'ai un souci de bordure qui n'apparait pas sur Safari / Chrome alors qu'elle s'affiche sur les autres navigateurs...

Voici le code épuré
<html>
	<head>
		<style>
		#account_access {
			clear: none;
			float: right;
			height: 33px;
			padding-top: 19px;
			width: auto;
		}
		#account_access a {
			border-left: 1px solid #868E96;
			border-right: 1px solid #868E96;
			color: #868E96;
			font-size: 0.9em;
			font-weight: bold;
			margin: 0 10px;
			padding: 0 10px;
			text-decoration: none;
			text-transform: uppercase;
		}
		</style>
	</head>
	<body>
		<div id="account_access">
			<a href="/opencms/opencms/fr/" target="_self">
				Lien
			</a>
		</div>
	</body>
</html>


Quelqu'un a déjà rencontré ce problème et sait comment y remédier?
Merci d'avance
Modifié par Asnidren (01 Mar 2011 - 10:28)
mets "float: right;" non pas dans la div "#account_access" mais dans "#account_access a"