Bonsoir a tous,
Voila je suis en train d'ecrire un page web sur lequel j'essai quelques technique CSS3 a savoir ombrage, opacity, bord arrondis. Et comme toujours le vilain IE fait des siennes mais aussi opéra. Quand a FF,Safari, Chrome no soucis.
j'ai essayé de comprendre comment faire pour apporter le meme rendu sur ces deux a partir des tuto d'alsa mais ne comprend pas bien ou placer les codes de débugage IE, Opera pour l'ombre porté sur un élément li, div et p .
Merci a tous pour votre aide
Voici mon code HTML
CSS
Voila je suis en train d'ecrire un page web sur lequel j'essai quelques technique CSS3 a savoir ombrage, opacity, bord arrondis. Et comme toujours le vilain IE fait des siennes mais aussi opéra. Quand a FF,Safari, Chrome no soucis.
j'ai essayé de comprendre comment faire pour apporter le meme rendu sur ces deux a partir des tuto d'alsa mais ne comprend pas bien ou placer les codes de débugage IE, Opera pour l'ombre porté sur un élément li, div et p .
Merci a tous pour votre aide
Voici mon code HTML
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-15">
<title>TITRE</title>
<link rel="stylesheet" media="screen" href="style.css">
</head>
<body>
<!-- Document -->
<div id="header">
<h1></h1>
<ul id="menu">
<li><a href="#Histoire" Title="Histoire du ski traditionel">Histoire</a></li>
<li><a href="#organisation" Title="Organistations">Organisations & Compétitions</a></li>
<li><a href="#pratiquants" Title="Les pratiquants">Les pratiquants</a></li>
<li><a href="#xxx" Title="xxx">xxx</a></li>
</ul>
</div>
<div id="global">
<H2>TITRE</h2>
<p>paragraphe
</p>
<p>paragraphe
</p>
<p>paragraphe
</p>
<br>
<p>paragraphe
</p>
<p></p>
<p></p>
</div>
<div id="footer"><p>copyrith by xxx : Design: xxx</p></div>
</body>
</html>
CSS
body {
background:url("font/bg_clair.jpg") no-repeat fixed center -550px #7DC3CD;
color: #fff;
margin: 0;
padding: 0;
text-align: left;
font-family: Helvetica, Arial,sans-serif;
}
/*--GLOBAL (PARTIE CONTENEUR GENERAL)---------------------
--------------------------------------------------------*/
#global {
width: 45%;
min-width: 400px;
margin: auto;
padding: auto;
padding-top: 130px;
padding-bottom: 50px;
}
#global p {
text-shadow:-1px 1px #48AFBD;
font-size:14px;
letter-spacing:1px;
text-align: justify;
line-height: 150%;
text-indent: 5%;
}
@font-face {
font-family : 'Gladifilthefte';
src: url('font/Gladifilthefte.ttf') format('truetype');
}
#global h2{
font-family: "Gladifilthefte", arial, sans-serif;
text-shadow: 1px 1px gray;
letter-spacing: 2px;
padding-bottom: 30px;
}
#global h3 {
border-left: solid 15px #fff;
padding-left: 15px;
margin-top: 30px;
}
/*--HEADER ( PARTIE ENTETE)-------------------------------
--------------------------------------------------------*/
#header {
position:fixed;
z-index: 9999;
top: 0;
width: 100%;
background: #e5e5e5;
height: 130px;
-moz-box-shadow: -1px 2px 12px grey;
-webkit-box-shadow: -1px 2px 12px grey;
}
#header h1 {
background : url("img/header.jpg") no-repeat 70px;
height: 100px;
margin: 0;
padding-left: 70px;}
/*--FOTTER (PIED DE PAGE)---------------------------------
--------------------------------------------------------*/
#footer {
position: fixed;
z-index: 9999;
bottom: 0;
width: 100%;
background: #e5e5e5;
opacity: 0.8;
height: 40px;
text-align: center;
-moz-box-shadow: 0px 2px 15px grey;
-webkit-box-shadow: 0px 2px 12px grey;
margin: 0;
padding: 0;
}
#footer p {
color: #7DC3CD;
margin: 5px 0 0 0;
}
/*--MENU -------------------------------------------------
--------------------------------------------------------*/
#menu li {
display: inline ;
margin-right: 1px;
font-weight: bold;
}
#menu {
margin: 0;
padding: 0;
text-align: center;
list-style: none; /*suppression des puces */
}
#menu li a {
color: #7DC3CD;
text-shadow: -1px 1px px grey;
padding: 4px 5px ;
line-height: 1em ;
text-align: center ;
text-decoration: none ;
}
#menu li :hover {
color: #666;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
background: #fff;
-moz-box-shadow: 1px 0px 5px grey;
-webkit-box-shadow: 1px 0px 5px grey;
}