IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Mise en page CSS Discussion :

Affichage forcé d'un élément


Sujet :

CSS

Vue hybride

Message précédent Message précédent   Message suivant Message suivant
  1. #1
    Invité
    Invité(e)
    Par défaut Affichage forcé d'un élément
    Bonjour,

    Voilà, j'ai un petit CSS pour réaliser un menu déroulant. Sur le dernier lien cliquer, je rajoute un id dessus. J'aimerais pouvoir afficher alors l'élément qui possède l'id correspondant au dernier choisit quand j'arrive sur la page.

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    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
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    #menu_principal a
    {
       text-decoration:none !important; 
       color          :white !important;
       text-decoration: none;
       color          : white;
    }
     
    /* menu principal*/
    #menu_principal
    {
        position          : absolute;
        left              : 100px;
        width             :700px;
        float             :left;
        height            :45px; 
        list-style        : none;  
        background        : #4E69AA;
        -moz-border-radius: 50px;
        border-radius     : 50px;
        -moz-box-shadow   : 0 2px 1px #C2C2C2;
        -webkit-box-shadow: 0 2px 1px #C2C2C2;
        box-shadow        : 0 2px 1px #C2C2C2;
    }
     
    #menu_principal li
    {
        margin-top :10px;
        float      : left;
        padding    : 0 0 10px 0;
        position   : relative;
        line-height: 0;
    }
     
    #menu_principal a 
    {
        margin-top     :0px;
        float          : left;
        height         : 25px;
        padding        : 0 25px;
        color          : white;
        text-transform : uppercase;
        font           : bold 12px/25px Arial, Helvetica;
        text-decoration: none;
        text-shadow    : 0 1px 0 #000;
    }
     
    #menu_principal li:hover > a
    {
        color: white;
    }
     
    *html #menu_principal li a:hover /* IE6 */
    {
        color: white;
    }
     
    #menu_principal li:hover > ul
    {
        display: block;
    }
     
    /* Sous-menu2s */
    #menu_principal ul
    {
        width             :auto;
        list-style        : none;
        margin            : 0;
        padding           : 0;    
        display           : none;
        position          : absolute;
        top               : 35px;
        left              : 0;
        z-index           : 99999;    
        background        : #4E69AA;
        -moz-box-shadow   : 0 0 2px rgba(255,255,255,.5);
        -webkit-box-shadow: 0 0 2px rgba(255,255,255,.5);
        box-shadow        : 0 0 2px rgba(255,255,255,.5);   
        -moz-border-radius: 5px;
        border-radius     : 5px;
    }
     
    #menu_principal ul ul
    {
      top : 0;
      left: 155px;
    }
     
    #menu_principal ul li
    {
        float             : none;
        margin            : 0;
        padding           : 0;
        display           : block;  
        -moz-box-shadow   : 0 1px 0 #ffffff, 0 2px 0 #777777;
        -webkit-box-shadow: 0 1px 0 #ffffff, 0 2px 0 #777777;
        box-shadow        : 0 1px 0 #ffffff, 0 2px 0 #777777;
    }
     
    #menu_principal ul li:last-child
    {   
        -moz-box-shadow   : none;
        -webkit-box-shadow: none;
        box-shadow        : none;    
    }
     
    #menu_principal ul a
    {    
        padding       : 10px;
        height        : 10px;
        width         : auto;
        height        : auto;
        line-height   : 1;
        display       : block;
        white-space   : nowrap;
        float         : none;
        text-transform: none;
    }
     
    *html #menu_principal ul a /* IE6 */
    {    
        height: 10px;
    }
     
    *:first-child+html #menu_principal ul a /* IE7 */
    {    
        height: 10px;
    }
     
    #menu_principal ul a:hover
    {
        background: #A3B600;
        background: -moz-linear-gradient(#A3B600,  #A3B600);    
        background: -webkit-gradient(linear, left top, left bottom, from(#A3B600), to(#A3B600));
        background: -webkit-linear-gradient(#A3B600,  #A3B600);
        background: -o-linear-gradient(#A3B600,  #A3B600);
        background: -ms-linear-gradient(#A3B600,  #A3B600);
        background: linear-gradient(#A3B600,  #A3B600);
    }
     
    #menu_principal ul li:first-child > a
    {
        -moz-border-radius: 5px 5px 0 0;
        border-radius     : 5px 5px 0 0;
    }
     
    #menu_principal ul li:first-child > a:after
    {
        content      : '';
        position     : absolute;
        left         : 30px;
        top          : -8px;
        width        : 0;
        height       : 0;
        border-left  : 5px solid transparent;
        border-right : 5px solid transparent;
        border-bottom: 8px solid #fff;
    }
     
    #menu_principal ul ul li:first-child a:after
    {
        left         : -8px;
        top          : 12px;
        width        : 0;
        height       : 0;
        border-left  : 0; 
        border-bottom: 5px solid transparent;
        border-top   : 5px solid transparent;
        border-right : 8px solid #fff;
    }
     
    #menu_principal ul li:first-child a:hover:after
    {
        border-bottom-color: #fff; 
    }
     
    #menu_principal ul ul li:first-child a:hover:after
    {
        border-right-color : #fff; 
        border-bottom-color: transparent;   
    }
     
     
    #menu_principal ul li:last-child > a
    {
        -moz-border-radius: 0 0 5px 5px;
        border-radius     : 0 0 5px 5px;
    }
     
    /* Nettoyer les éléments flottant */
    #menu_principal:after 
    {
        visibility: hidden;
        display   : block;
        font-size : 0;
        content   : " ";
        clear     : both;
        height    : 0;
    }
     
    * html #menu_principal             { zoom: 1; } /* IE6 */
    *:first-child+html #menu_principal { zoom: 1; } /* IE7 */
     
    #menu_principal #active_main_menu_item /*dernier cliquer */
    {
      color           : #FFFFFF !important;
      background-color: #A3B600; 
    }
    Je ne sais pas si je peut faire ça en CSS ou alors si je dois passer en JavaScript ?

    Cordialement,

  2. #2
    Invité
    Invité(e)
    Par défaut
    Je sais que je dois me diriger vers une solution en jQuery.

    Cordialement,

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Réponses: 11
    Dernier message: 02/06/2010, 14h02
  2. Réponses: 16
    Dernier message: 23/10/2009, 16h47
  3. cases vides - affichage forcé du 0
    Par V i n c e n t dans le forum Cognos
    Réponses: 13
    Dernier message: 26/08/2009, 15h54
  4. [SP-2007] SPD - Affichage ou non d'éléments
    Par Socki dans le forum SharePoint
    Réponses: 0
    Dernier message: 05/06/2009, 16h27
  5. affichage forcé d'un texte prédéfini
    Par gyatso68 dans le forum Général JavaScript
    Réponses: 0
    Dernier message: 09/04/2008, 22h34

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo