CSS Border
CSS Borders are extremely powerful tools for decorating your HTML elements. Let’s begin with a very simple solid border:
.my_div { border:1px solid #000; }
This will produce:
A 1px solid black border
Now let’s have a look at some of the other possibilities:
.my_div{ border:1px dotted #000; }
This will produce:
A 1px dotted black border
.my_div{ border:1px dashed #000; }
This [...]
