CSS Calc Margin-Top Berdasarkan Tinggi?

/*with margin-top the % is relative to width of parent element (kinda silly)
you can use top:50% which will be relative to height of the parent element*/
.my_element{
  top:50%
  position:relative;
}
Friendly Hawk