How can I show only the text when dragging a div?

I have a draggable div. When I drag it, the image of that div appears (including the background,size,text).

Is there a way to make it show only the text without using additional styles?

#draggable {
  width: 100px;
  height: 100px;
  background-color: lightblue;
  position: absolute;
  cursor: move;
}
<div id="draggable" draggable="true">Drag me</div>