Is there another shorthand version for border, something like this example:
[top,right,bottom,left, style, color]
border: 1px 1px 0px 1px solid #000;
I’m trying to accomplish the effect similar to this:
border: 1px solid #000;
border-bottom: 0;
Thanks in advance!
The spec says:
Your way of doing it with two properties is probably the shortest way. Just go with that.