私はこの星をその中心の周りで回転させようとしています。今のところ、それは他の点を中心に回転します。
#question {
font-size: 3em;
animation: 1s linear 0s normal none infinite spin;
display: block;
width: 0;
}
@keyframes spin {
from { transform: rotate(00deg); }
to { transform: rotate(360deg); }
}
<div id="testWrapper"><span id="question">☆</span></div>
星がその中心を中心に回転するように修正するにはどうすればよいですか?