Bonjour à tous,
Pour centrer une div dans une autre, j'ai utilisé des margin auto à gauche et à droite.
Dans Firefox ça marche mais ce n'ai pas le cas dans Internet Explorer :aie:
Une solution ?
Merci.
Pour centrer une div dans une autre, j'ai utilisé des margin auto à gauche et à droite.
Dans Firefox ça marche mais ce n'ai pas le cas dans Internet Explorer :aie:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<style>
body{
direction: ltr;
font-family: Tahoma;
font-size: 12px;
background-color: #000;
}
.main{
width: 75%;
margin-left: auto;
margin-right: auto;
position: relative;
background-color: #333;
border: 1px dashed #CCC;
}
.content{
width: 65%;
margin-left: auto;
margin-right: auto;
position:relative;
background-color: #FFF;
border: 1px dashed #CCC;
}
</style>
</head>
<body>
<div class="main">
<div class="content"></div>
</div>
</body>
</html>
Une solution ?
Merci.