How might I force the following Graphics element to expand to contain the Inset text?

Graphics[{White, Rectangle[{0., 0.0}, {1, 1}],
Yellow, Rectangle[{0., 0.0}, {.2, 1}],
Black,
Inset[
Style[ToString[Unevaluated@abcdefghijklmnopqr],
FontSize -> Scaled[.4]]
, ImageScaled[{0.2753623188405797,
0.48550724637681175}], {Left, Center}]
}, ImagePadding -> 0, PlotRangePadding -> 0,
PlotRangeClipping -> True]
The following gives the desired output although it doesn't solve the issue because ultimately I am trying to nest the text inside another Graphics element: Row[{Graphics[{}, ImageSize -> {10, 23}, Background -> Yellow],Text["abcedefghijklmnopqr"]}].
Ultimately I have several nested Insets but unfortunately I can't seem to force the Insets to nest inside of each other and therefore show entirely on the screen. These plot range questions seems to be related. The first question titled "How to determine PlotRange to include all Graphics" is likely a duplicate, although I believe you must ImageSize and PlotRange to get correct values.


Insets. So is your aim simply to be able to nestInsets? – Szabolcs Mar 15 '14 at 17:28Text[]elements to show(which are internally represented asInsets). It is interesting if you run the followingg = Graphics[{GrayLevel[0], Inset[Style["abcdefghijklmnopqrstuvwxyz", FontSize -> Scaled[0.2]], Scaled[{0.27, 0.48}], {Left, Center}]}] ImportString@ExportString[g, "PNG", ImageSize -> {1000, Automatic}]you can see 1) by expanding and shrinking the nb you can see more more 2) Exporting and then importing the image results in being able to see the entire text. – William Mar 15 '14 at 17:34