By default the border-width
is 0
and border-style
is none
So you need to set them to border-width:1px
and border-style:solid
. You can combine all the border properties into one as below:
#box {
border:1px solid red
}
By default the border-width
is 0
and border-style
is none
So you need to set them to border-width:1px
and border-style:solid
. You can combine all the border properties into one as below:
#box {
border:1px solid red
}