Bonjour,
J'ai suivi ce tuto http://www.alsacreations.com/tuto/lire/891-coins-arrondis-css-sans-images.html pour produire des cadres arrondis grâce à la fonction border-radius.
Cela fonctionne très bien sous Firefox et Safari, mais sous Internet Explorer, voilà ce que j'obtiens:
[Modération : Image trop grande] http://a.imageshack.us/img704/750/snapshot3738.png
[Modération : Image trop grande] http://a.imageshack.us/img836/4414/snapshot3739.png
Voici le code source de la page:
et voici la feuille de style:
Merci pour vos réponses!
Modifié par Laurie-Anne (06 Sep 2010 - 13:58)
J'ai suivi ce tuto http://www.alsacreations.com/tuto/lire/891-coins-arrondis-css-sans-images.html pour produire des cadres arrondis grâce à la fonction border-radius.
Cela fonctionne très bien sous Firefox et Safari, mais sous Internet Explorer, voilà ce que j'obtiens:
[Modération : Image trop grande] http://a.imageshack.us/img704/750/snapshot3738.png
[Modération : Image trop grande] http://a.imageshack.us/img836/4414/snapshot3739.png
Voici le code source de la page:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<!--[if lte IE 8]>
<script type="text/javascript" src="roundies.js">
</script><![endif]-->
<html>
<head>
<link rel="stylesheet" type="text/css" media="screen" href="style.css">
</head>
<body>
<div class="conteneur">
<img id="banniere" src="banniere.jpg">
<div id="menuindex">
<ul>
<li><a href="index.html">Accueil</a></li>
<li><a href="prestations.html">Prestations</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="#">A voir</a></li>
</ul>
</div>
<div class="texte">
<p>Tarif unique 50 euro.</p>
<!--<p>Quel que soit le temps passé, quelle que soit la panne.</p>
<p>Payez toujours le même prix.</p>-->
</div>
</div>
<!--<p id="footer"><img src="footer.gif">-->
<!--<p id="footer"></br>Micronantes dépannage informatique</br>
micronantes@gmail.com</br>
070786110694
</p>-->
<div id="conteneurbas">
<div class="cg">
<p>0700000000</p>
<p>micronantes@gmail.com</p>
</div>
<div class="cd">
<p>Désinfection</p>
<p>Réinstallation système</p>
<p>Assemblage</p>
</div>
</div>
</body>
</html>
et voici la feuille de style:
body {
text-align: center;
margin: 0;
padding: 10px 0;
background: url(background.gif) fixed;
}
.conteneur
{margin: 0 auto;
width: 900px;
height: 500px;
background: black;
border: 12px solid white;
-moz-border-radius: 50px;
-webkit-border-radius: 50px;
padding-bottom: 80px;
color: #3399FF;
}
.conteneurpresta
{margin: 0 auto;
width: 900px;
height: 1500px;
background: black;
border: 12px solid white;
-moz-border-radius: 50px;
-webkit-border-radius: 50px;
padding-bottom: 80px;
color: #3399FF;
}
#banniere {
margin-bottom: 5px;}
#menuindex
ul {
padding-left: 199px;
list-style-type:none;
}
li {
float:left; /*pour IE*/
border:3px solid white;
}
ul li a {
display:block;
float:left;
width:120px;
line-height:40px;
background:black url(1.png) repeat-x;
color:#242424;
text-decoration:none;
text-align:center;
font-family: Verdana;
font-weight: bold;
}
ul li a:hover {
background:black url(8.png) repeat-x;
color:white;
}
.texte {
border: 3px solid #808080;
-moz-border-radius: 50px;
-webkit-border-radius: 50px;
float: none;
text-align: center;
font-family: Georgia;
font-weight: bold;
padding: 0px 20px 0px 20px;
margin-top: 120px;
margin-left: 50px;
margin-right: 50px;
color: white;
}
.textepresta {
border: 10px solid #808080;
-moz-border-radius: 50px;
-webkit-border-radius: 50px;
float: none;
text-align: left;
font-family: Georgia;
font-weight: bold;
padding: 0px 20px 0px 20px;
margin-top: 120px;
margin-left: 50px;
margin-right: 50px;
background: url(bigslug.gif);
color: white;
}
strong {
font-size: 1.1em;
font-weight: bolder;
color: #CC6600;
/*text-decoration: underline;*/
}
p#footer{
margin: 30px auto;
width: 800px;
height: 30px;
background: black;
border: 5px solid white;
-moz-border-radius: 50px;
-webkit-border-radius: 50px;
color: white;
font-family: Verdana;
padding: 0 auto;
}
#conteneurbas
margin: 0 auto;
width: 900px;
height: 500px;
}
.cg {
float: left;
/*margin: 30px auto 25% 25%;*/
margin: 50px 0 0 20px;
width: 400px;
height: 120px;
background: black;
border: 6px solid white;
-moz-border-radius: 50px;
-webkit-border-radius: 50px;
color: white;
font-size: x-large;
font-weight: bolder;
}
.cd {
float: right;
/*margin: 30px 25% 25% auto;*/
margin: 50px 20px 0 0;
width: 400px;
height: 120px;
background: grey;
border: 6px solid white;
-moz-border-radius: 50px;
-webkit-border-radius: 50px;
color: white;
font-weight: bolder;
}
Merci pour vos réponses!
Modifié par Laurie-Anne (06 Sep 2010 - 13:58)