#my-anchor-math {
  anchor-name: --my-anchor-math;
}

#my-target-math {
  --full-math: anchor(--my-anchor-math 100%);
  --full-minus-math: calc(anchor(--my-anchor-math 100%) - 10px);

  position: absolute;
  top: calc(var(--full-math) + 10px);
  left: var(--full-minus-math);
}
