Stile dei bordi

dotted

Codice:

#div1 {
border : 2px dotted Black;
background: silver;
width: 300px;
}

 

dashed

Codice:

#div2 {
border : 2px dashed Black;
background: silver;
width: 300px;
}

 

solid

Codice:

#div3 {
border : 3px solid Black;
background: silver;
width: 300px;
}

 

double

Codice:

#div4 {
border : 5px double Black;
background: silver;
width: 300px;
}

 

groove

Codice:

#div5 {
border : 5px groove gray;
background: silver;
width: 300px;
}

 

ridge

Codice:

#div6 {
border : 5px ridge gray;
background: silver;
width: 300px;
}

 

inset

Codice:

#div7 {
border : 5px inset gray;
background: silver;
width: 300px;
}

 

outset

Codice:

#div8 {
border : 5px outset gray;
background: silver;
width: 300px;
}

 

hidden

Codice:

#div9 {
border : 5px hidden gray;
background: silver;
width: 300px;
}