Reputation: 367
I'm trying to build a menu without sucess. I'm trying to set a border to all my li elements, but the border has kept on bottom. How can I turn the border all around my li element?
take a look at my code: http://jsfiddle.net/KByqr/
Upvotes: 1
Views: 117
Reputation: 3089
Set a border-width
. A border-width
, border-color
, and border-style
are necessary. ie: border:1px solid black;
Upvotes: 3
Reputation: 167172
-bottom
from these two lines:border-bottom-style: solid;
border-bottom-width: medium;
border-style: solid;
border-width: medium;
Upvotes: 1