Background attribute solving

radial-gradient(100% 200% at 50% 0,transparent 0.65em, black 0.75em, black 47%,transparent 50%) 50% 64% / 2.5em 1em;

what does 50% 64% / 2.5em 1em mean after this css code?

Mar.11,2021

is equivalent to:

background:radial-gradient(100% 200% at 50% 0,transparent 0.65em, black 0.75em, black 47%,transparent 50%);
background-position: 50% 64%;
background-size: 2.5em 1em;

50% 64% / 2.5em 1em is actually background-position / background-size,. It is written together in a compound way here. You can refer to http://css.doyoe.com/properti.

.
Menu