Bonjour,
pour simplifier l'intégration du code, je voudrais mettre le html et le style en une seule page ; or, si je fais ça, une partie du style (les largeurs) n'est pas prise en compte alors qu'elle l'était avec un CSS séparé ; pourquoi ?
pour simplifier l'intégration du code, je voudrais mettre le html et le style en une seule page ; or, si je fais ça, une partie du style (les largeurs) n'est pas prise en compte alors qu'elle l'était avec un CSS séparé ; pourquoi ?
<html>
<head>
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>test</title>
<style type="text/css">
#navigation { width:790px; font-family:Arial, Helvetica, sans-serif;}
#navigation .menu { float:left; width:33%;margin:0; padding:0; }
#navigation ul li { list-style:none; }
.title {
background-color:#4FA600;
color:white;
width:790px;
display:inline-block;
text-align:center;
}
.clear{
clear:left; list-style: none;
margin:0; padding:0;
}
.level0,.level1 {
display: inline-block;
background-color:#EAEAEA;
width:300px;
font-size:14px;
}
.level2 {
display: inline-block;
width:350px;
font-size:14px;
line-height:15px;
padding-left:10px;
background: url(http://---/green_bullet.gif) left no-repeat;
}
.level3 {
display: inline-block;
width:300px;
font-size:12px;
line-height:15px;
padding-left:20px;
}
.level2:hover {color:#87D300; }
.level2 a:hover {color:#87D300; }
.level3:hover {color:#87D300; }
.level3 a:hover {color:#87D300; }
</style>
</head>
<body>
<!-- All sitemap in a div, then each item, 3 <ul> (3 levels) and most of the texts into span (to apply CSS classes)-->
<div id="navigation">
<ul>
<li><span class="title"><font width="100%">Site Map</font></span></li>
<li>
<ul class="menu">
<li><span class="level0"><a href="#">User Centric</a></span></li>
<li><span class="level1"><a href="http://ocp.schneider-electric.com/Global/OCP/OCPHTML.nsf/pages/Project_Managers_Area/$File/ProjectManagers_home2.html">Project
Manager</a></span></li>
<li><span class="level1"><a href="#">Project leaders</a></span></li>
<li><span class="level2"><a href="http://ocp.schneider-electric.com/Global/OCP/OCPHTML.nsf/pages/Project+Design+Leader+Home/$File/DesignTest_ProjectDesignLeader2.html">Design
& tests</a></span></li>
<li><span class="level2"><a href="http://ocp.schneider-electric.com/Global/OCP/OCPHTML.nsf/pages/Indust_Home/$File/Industrialization2.html">Industrialization</a></span></li>
<li><span class="level2"><a href="http://ocp.schneider-electric.com/Global/OCP/OCPHTML.nsf/pages/Offer+Marketing+home/$File/OfferMarketing2.html">Marketing</a></span></li>
<li><span class="level2"><a href="http://ocp.schneider-electric.com/Global/OCP/OCPHTML.nsf/pages/Users+Centric+Purchasing/$File/Purchasing2.html">Purchasing</a></span></li>
<li><span class="level2"><a href="http://ocp.schneider-electric.com/Global/OCP/OCPHTML.nsf/pages/Project+Quality+Leader+Home/$File/Project_Quality_Leader2.html">Quality</a></span></li>
<li><span class="level2"><a href="http://ocp.schneider-electric.com/Global/OCP/OCPHTML.nsf/pages/Downstream_SC_Leader/$File/Downstream_SC_Leader2.html">Downstream
Supply Chain </a></span></li>
...