You may not be able to set some percent of parent's height to the child, 10% in this case to make it a square, but you can do this: aspect-ratio: 1/1
so that it automatically becomes a square.
Full code you may want to use:
.Element{
height: 10%;
aspect-ratio: 1/1;
}