robvanrooij1977
Gebruiker
- Lid geworden
- 12 mei 2012
- Berichten
- 17
Hallo,
Hoe kan ik twee knoppen langs elkaar aan de onderzijde van de pagina tegen de footer plaatsen.
De knoppen moeten aan de rechter zijde komen te staan.
ul.nav10 {
list-style: none;
clear:right;
font:Arial, Helvetica, sans-serif;
}
ul.nav10 li {
border-bottom: 0px solid #FFF; /* this creates the button separation */
float:right;
text-align:center;
}
ul.nav10 a, ul.nav10 a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
width: 80px; /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
text-decoration: none;
color:#920101;
}
ul.nav10 a:hover, ul.nav10 a:active, ul.nav10 a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
background:#920101;
color: #FFF;
Bedankt voor uw reactie.
Hoe kan ik twee knoppen langs elkaar aan de onderzijde van de pagina tegen de footer plaatsen.
De knoppen moeten aan de rechter zijde komen te staan.
ul.nav10 {
list-style: none;
clear:right;
font:Arial, Helvetica, sans-serif;
}
ul.nav10 li {
border-bottom: 0px solid #FFF; /* this creates the button separation */
float:right;
text-align:center;
}
ul.nav10 a, ul.nav10 a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
width: 80px; /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
text-decoration: none;
color:#920101;
}
ul.nav10 a:hover, ul.nav10 a:active, ul.nav10 a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
background:#920101;
color: #FFF;
Bedankt voor uw reactie.