I am trying to show a line number for every line. My code working properly in Chrome but in Firefox it's not working because of background-attachment: local; not accepting in Firefox. I want it should work in both browsers.
JsFiddle: https://jsfiddle.net/k8go4d5b/
Here is my code:
<!DOCTYPE html>
<html>
<head>
<style>
textarea{
background: url(http://i.imgur.com/2cOaJ.png);
background-attachment: local;
background-repeat: no-repeat;
padding-left: 35px;
padding-top: 10px;
border-color:#ccc;
}
</style>
</head>
<body>
<textarea rows="10" cols="40"></textarea>
</body>
</html>