to use css style with border
div {
border :width style color;
}
which apply all these properties for all four div borders.
or you can specify some properties for each border, ex:
div {
border-top:width style color;
}
or more specify each property for each border, ex:
div {
border-top-width: width;
}
for more information
Change div border width, style and color.