Given a set of Graphics in a grid with frames on all borders of the first and third object:
GraphicsGrid[{Table[Graphics[Circle[]], {4}]},
Frame -> {None, None, {{1, 1} -> True, {1, 3} -> True}}]
How can I put a frame just on the bottom of those objects? This is probably a trivial problem, but I was not able to figure it out, unfortunately.
EDIT: Generating a frame separately for every single graphic is not feasible in my case, since I'm generating several GraphicsGrids with over a 100 objects automatically based on some data. And depending on whether some criterium is met I want to underline the graphic.

