1

I am having some issue regarding displaying line number in textarea and i don't want to use jQuery for displaying the line number. i tried a simple CSS trick to display the line number that is:

.linenumber{
    background-attachment: local;
    background-repeat: no-repeat;
    padding-left: 35px;
    padding-top: 10px;
    border-color:#ccc;
}  

but that not worked for my page. I believe that bootstrap is causing issue because when i tried with different file it work can anyone please suggest me the solution.

Rafi Ahmad
  • 55
  • 2
  • 7

1 Answers1

3
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;
 line-height:16px;
}
Riddhi Rathod
  • 410
  • 2
  • 9