pb : Je n'arrive plus à cliquer à cause d'un z-index

pb : Je n'arrive plus à cliquer à cause d'un z-index - HTML/CSS - Programmation

Marsh Posté le 13-11-2007 à 12:48:59    

Bonjour,  
 
Je suis en train de créer un site et j'ai un pb avec ma page css.
J'ai utilisé la propriété z-index pour mettre une image (en fait un cadre pour que ce soit plus joli) au dessus de plusieurs 'select' qui sont contenus dans un 'div'.
L'image est dans un 'div' et les 'select' sont dans un 'div', mais les 'div' sont successifs (c'est-à-dire non imbriqués). Le pb que j'ai est que je n'arrive plus à cliquer sur les 'select'.
Si qqun a une idée, qu'il n'hésite pas!
 
Voici la partie html :

Code :
  1. <div id = "cadre">
  2.          
  3.         </div>
  4.      
  5.         <div id = "search">
  6.           <input id = "searchText" type="text" size="15" />
  7.           <input id = "searchBtn" type="button" value="Chercher" OnClick="actualise();" />
  8.           <br />
  9.        
  10.           <select id = "genre" size="5" onchange= "actualise();">
  11.             <option value = "-1" selected> Tous </option>
  12.           </select>
  13.        
  14.           <select id = "artiste" size="5" onchange= "actualise();">
  15.             <option value = "-1" selected> Tous </option>
  16.           </select>
  17.        
  18.           <select id = "album" size="5" onchange= "actualise();">
  19.             <option value = "-1" selected> Tous </option>
  20.           </select>
  21.        
  22.           <select id = "annee" size="5" onchange= "actualise();">
  23.             <option value = "-1" selected> Tous </option>
  24.           </select>
  25.         </div>


 
et la partie css :
 

Code :
  1. #cadre
  2. {
  3. position: absolute;
  4. top: 42%;
  5. left: 20%;
  6. width: 60%;
  7. height: 24%;
  8. /*border: solid 1px red;*/
  9. background: transparent url(../images/cadre.png) no-repeat;
  10. z-index: 3;
  11. }
  12. #searchText
  13. {
  14. position: absolute;
  15. top: 42.8%;
  16. left: 21%;
  17. z-index: 1;
  18. /*margin-top: 10px;
  19. margin-left: 30px;
  20. margin-bottom: 15px;*/
  21. border: 2px outset black;
  22. }
  23. #searchBtn
  24. {
  25. /*display: none;*/
  26. position: absolute;
  27. top: 42.8%;
  28. left: 32.4%;
  29. z-index: 1;
  30. cursor: pointer;
  31. /*margin-top: 10px;
  32. margin-left: 5px;
  33. margin-bottom: 15px;*/
  34. border: 2px outset black;
  35. }
  36. #searchBtn:hover
  37. {
  38. color: #222;
  39. /*margin-top: 10px;
  40. margin-left: 5px;
  41. margin-bottom: 15px;*/
  42. border: 1px outset black;
  43. }
  44. #searchBtn:active
  45. {
  46. color: #444;
  47. /*margin-top: 10px;
  48. margin-left: 5px;
  49. margin-bottom: 15px;*/
  50. border: 1px inset black;
  51. }
  52. #genre
  53. {
  54. position: absolute;
  55. top: 47%;
  56. left: 21%;
  57. z-index: 1;
  58. cursor: pointer;
  59. /*margin-left: 30px;
  60. margin-bottom: 15px;*/
  61. background: #ddd;
  62. width: 100px;
  63. border: 2px outset black;
  64. }
  65. #artiste
  66. {
  67. position: absolute;
  68. top: 47%;
  69. left: 30.9%;
  70. z-index: 1;
  71. cursor: pointer;
  72. /*margin-bottom: 15px;
  73. margin-left: 0px;*/
  74. background: #ddd;
  75. width: 200px;
  76. border: 2px outset black;
  77. }
  78. #album
  79. {
  80. position: absolute;
  81. top: 47%;
  82. left: 50.5%;
  83. z-index: 1;
  84. cursor: pointer;
  85. /*margin-bottom: 15px;
  86. margin-left: 0px;*/
  87. background: #ddd;
  88. width: 200px;
  89. border: 2px outset black;
  90. }
  91. #annee
  92. {
  93. position: absolute;
  94. top: 47%;
  95. left: 70.1%;
  96. z-index: 1;
  97. cursor: pointer;
  98. /*margin-bottom: 15px;
  99. margin-left: 0px;*/
  100. background: #ddd;
  101. width: 70px;
  102. border: 2px outset black;
  103. }

Reply

Marsh Posté le 13-11-2007 à 12:48:59   

Reply

Marsh Posté le 13-11-2007 à 13:23:36    

pourquoi ne pas placer ton onclick="actualise();" que tu as sur l'input "searchBtn" au niveau de ton fameux div ?
Il suffit alors de faire en sorte que ta fonction "actualise" fasse bien son boulot sur les bons élements


---------------
We deserve everything that's coming...
Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed