.previewCursor { color: black; position: absolute; transform-origin: left top; pointer-events: none; } //this is an animation for the blinking cursor! @keyframes blink { 0% {opacity: 0} 49%{opacity: 0} 50% {opacity: 1} } #previewCursor { animation: blink 1s infinite; }