I\'m trying to add a border to a div element in HTML. Below is my code.
You have to set the rule "border-style" to see the border
#container-border { border-width: 2px; border-color: red; border-style:solid; }
...