If I understood correctly, you want either a side (left/right/top/bottom) or a corner (top-left,bottom-right...).
This can be solved as something like :
/^((left|right|top|bottom)|((top|bottom)delimiter(left|right)))$/
you can, of course, reverse the order of the sides for corner notation (to output corners as left-top and not top-left) :
/^((left|right|top|bottom)|((left|right)delimiter(top|bottom)))$/
Note that delimiter is your desired delimiter (can be an empty space or a minus sign).
Hope this helps!
P.S. : I heard your call for help on twitter :P.
update
based on your edit, I think now I understand what you need :
/^((left|right|top|bottom)|((left|right|(-?\d*(\.\d+)?(px|em|\%)))\s+(top|bottom|(-?\d*(\.\d+)?(px|em|\%)))))$/
This regex now matches a side (left/top/right/bottom) or two sides defined by left & top values, which can be either the direction keywords (left/top/right/bottom) or an actual value (such as 100px or 1.4em).
The value regex (-?\d*(\.\d+)?(px|em|\%)) matches any floating number (even without the first zero : .123 instead of 0.123) followed by a unit of measurement (here you can supply a full list of units)
Here's some of my (javascript) test which passed:
var pattern = /^((left|right|top|bottom)|((left|right|(-?\d*(\.\d+)?(px|em|\%)))\s+(top|bottom|(-?\d*(\.\d+)?(px|em|\%)))))$/;
pattern.test('left bottom'); // true
pattern.test('-10px top'); // true
pattern.test('-.23em 140%'); // true
final update
- removed the start & end characters
- switched the order of the side and corner patterns, prioritizing the corner pattern to match first
/(((left|right|(-?\d*(\.\d+)?(px|em|\%)))\s+(top|bottom|(-?\d*(\.\d+)?(px|em|\%))))|(left|right|top|bottom))/