Consider the following example of a div element:
<div style="height: 10%; width: 20%; border: 1px solid black">
Div Content
</div>
The div above has its height and width specified in percentages. I would like the border width to adjust accordingly when resizing the element. It seems that specifying the border width only in pixels is the standard method. Are there any suggestions on how to make the border width adjust with the element's size?