How can I create a DIV with borders on the bottom and left sides only, like the following design:
+++++++++
+| +
+| +
+| +
+|______+
+++++++++
+ : DIV's boundary
| : border
I've explored some options that didn't meet my requirements:
box-sizing
, as it affects all four sides of the DIV.box-shadow
, because it produces an outside shadow.border-left
\border-bottom
, which would not be inside the DIV.
Would setting borders for the left and bottom sides along with an appropriate margin using BORDER_WIDTH be the most effective solution, or is there a better approach?
Thank you.
p.s. Looking for a pure CSS solution.