幅と高さが 10 ピクセルのグループ内に幅と高さが「100%」の Border を配置すると、Border が 10 ピクセルよりも大きく見えるのはなぜですか?
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/halo"
>
<s:Group width="10" height="10">
<s:Border width="100%" height="100%" borderColor="#FF0000"/>
</s:Group>
</s:Application>