01/08/2011, 18h51
|
#1
|
|
Candidat au titre de Membre du Club
Inscription : mai 2004 Messages : 52 Détails du profil  Informations forums : Inscription : mai 2004 Messages : 52 Points : 11 Points : 11
|
Aligner le texte arabe verticalement
bonjour
j'ai rencontré un problème car je n'arrive pas à aligner le texte verticalement CS4
lorsque je mets :
Code :
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
| @charset "utf-8";
#conteneur #contenu #menu_gauche ul li {
font-family: "Times New Roman", Times, serif;
font-size: 22px;
background-color: transparent;
background-image: url(../images/-arrow03-D.jpg);
background-repeat: no-repeat;
background-position: 170px 8px;
padding-right: 20px;
}
#conteneur #contenu #menu_gauche ul ul li {
font-family: "Times New Roman", Times, serif;
font-size: 18px;
background-color: transparent;
background-image: url(../images/-arrow01-D.jpg);
background-repeat: no-repeat;
background-position: 150px 5px;
padding-right: 40px;
}
#conteneur #contenu #menu_gauche ul ul ul li {
font-family: "Times New Roman", Times, serif;
font-size: 14px;
background-color: transparent;
background-image: url(../images/--arrow00-D.jpg);
background-repeat: no-repeat;
background-position: 120px 2px;
padding-right: 70px;
}
#conteneur #contenu #menu_gauche ul li strong a {
color: #014C74;
text-decoration: none;
}
#conteneur #contenu #menu_gauche ul li strong a:hover {
color: #FFF;
}
#menu_gauche {
height: 340px;
width: 200px;
left: 685px;
position: absolute;
background-color: #98A9CA;
-moz-border-radius-topleft:30px;
-moz-border-radius-topright:30px;
-moz-border-radius-bottomleft:30px;
-moz-border-radius-bottomright:30px;
-webkit-border-top-left-radius:25px;
-webkit-border-top-right-radius:25px;
-webkit-border-bottom-left-radius:25px;
-webkit-border-bottom-right-radius:25px;
top: 153px;
}
#conteneur #contenu #menu_gauche ul {
color: #014C74;
text-align: right;
list-style-type: none;
width: 180px;
padding-left: 0px;
margin-top: 4px;
}
#conteneur #contenu #menu_gauche ul ul ul {
color: #014C74;
text-align: right;
list-style-type: none;
}
#conteneur #contenu #menu_gauche ul ul{
color: #014C74;
text-align: right;
list-style-type: none;
}
#contenu {
height: 500px;
width: 900px;
position: relative;
background-color: #FFF;
}
body {
background-color: #E1E6EF;
}
#conteneur {
width: 900px;
margin-right: auto;
margin-left: auto;
}
.actif_2 {
color: #FFF;
border: thin solid #014C74;
background-color: #014C74;
background-image: url(../images/arrow-F-D.gif);
list-style-type: none;
background-repeat: no-repeat;
font-family: "Times New Roman", Times, serif;
font-size: 18px;
background-position: 175px 7px;
margin-bottom: -4px;
margin-top: -4px;
width: 197px;
height: 23px;
margin-left: 0px;
padding-right: 0px;
direction:rtl;
}
p {text-indent:30px;
} |
le texte reste en bas :
Code :
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| <body>
<div id="conteneur">
<div id="contenu">
<div id="menu_gauche">
<strong><a href="lien1.html">lien 1</a></strong>
<strong><a href="lien2.html">lien 2</a></strong>
<strong><a href="lien21.html">lien 21</a></strong>
<strong><a href="lien211.html">lien 211</a></strong>
<strong><a href="lien212.html">lien 212</a></strong>
<strong><a href="lien22.html">lien 22</a></strong>
<DIV class="actif_2"><p><strong>lien 23</strong></p></DIV>
<strong><a href="lien24.html">lien 24</a></strong>
<strong><a href="lien3.html">lien 3</a></strong>
</div>
</div>
</div>
</body>
</html> |
|
|
00
|