I am looking for the meaning of the symbol /
. I googled it without anky kind of sucess.
You can find everywhere, but here an example from today :
#identity:before
{
/* some useless stuffs */
border-radius: 30% 0% 30% 0%/75% 0% 75% 0%;
}
I already saw it with a font-size
property.
I am not sure this question belongs to here. Say me, if I have to move it.
Thank you.
UPDATE
Chris B post a link about the case of font-size
.
font: 12px/18px
mean :
font-size: 12px;
line-height: 18px;
It is a shorthand. Now, what the point with border-radius
?