I am applying css cursor:copy for a given div. In case of FF and Chrome browser it's working fine, but when I am opening it in IE(version 9+) its not working . Please suggest Below is code -
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<style>
.editable{
color: #428bca;
cursor: copy;
}
</style>
</head>
<body>
<div class="editable" contenteditable="true">
This is my editable div
</div>
</body>
</html>
Yes,
cursor: copy
is not supported until IE 10.Reference: https://developer.mozilla.org/en-US/docs/Web/CSS/cursor