Hallo alle zusammen,
ich suche nach einer Möglichkeit mit JavaScript vorbestimmte Elemente zu Manipulieren. Konkreter gesagt habe ich ein Containerlayout folgend beschrieben:
body {
padding: 0px;
margin: 0px;
background-color: #FFFFFF;
Font-family: Verdana,Times,Arial;
Font-Size: 12px;
}
#logo {
width: 750px;
height: 110px;
margin: 10px 110px;
background-color: #9EB3F9;
}
#inhalt {
width: 580px;
margin-left: 280px;
margin-top: 20px;
margin-right: 0px;
margin-bottom: 0px;
background-color: #FFFFFF;
}
#headernav{
width: 750px;
height: 20px;
background-color: #9EB3F9;
margin: -10px 110px;
}
#links { // DAS IST DAS NAVIGATIONSMENÜ WELCHES EINGEFÄRBT WERDEN SOLL
position: absolute;
top: 140px;
left: 110px;
width: 160px;
height: 300px;
background-color: #9EB3F9;
padding-left: 5px;
padding-top: 5px;
border-left: #000000 0px solid;
border-right: #000000 0px solid;
border-top: #000000 0px solid;
border-bottom: #000000 0px solid;
}
nun möchte ich mit JavaScript den Tabellenrahmen einfärben.
Habe nur Probleme dieses zu lösen.
Hier mein Ansatz:
document.links.style.border = '1 solid blue';
Viele Grüße
David
ich suche nach einer Möglichkeit mit JavaScript vorbestimmte Elemente zu Manipulieren. Konkreter gesagt habe ich ein Containerlayout folgend beschrieben:
body {
padding: 0px;
margin: 0px;
background-color: #FFFFFF;
Font-family: Verdana,Times,Arial;
Font-Size: 12px;
}
#logo {
width: 750px;
height: 110px;
margin: 10px 110px;
background-color: #9EB3F9;
}
#inhalt {
width: 580px;
margin-left: 280px;
margin-top: 20px;
margin-right: 0px;
margin-bottom: 0px;
background-color: #FFFFFF;
}
#headernav{
width: 750px;
height: 20px;
background-color: #9EB3F9;
margin: -10px 110px;
}
#links { // DAS IST DAS NAVIGATIONSMENÜ WELCHES EINGEFÄRBT WERDEN SOLL
position: absolute;
top: 140px;
left: 110px;
width: 160px;
height: 300px;
background-color: #9EB3F9;
padding-left: 5px;
padding-top: 5px;
border-left: #000000 0px solid;
border-right: #000000 0px solid;
border-top: #000000 0px solid;
border-bottom: #000000 0px solid;
}
nun möchte ich mit JavaScript den Tabellenrahmen einfärben.
Habe nur Probleme dieses zu lösen.
Hier mein Ansatz:
document.links.style.border = '1 solid blue';
Viele Grüße
David
Kommentar