【问题标题】:Display Line number in textarea without jquery在没有jquery的textarea中显示行号
【发布时间】:2018-12-12 18:12:24
【问题描述】:

我在 textarea 中显示行号时遇到了一些问题,我不想使用 jQuery 来显示行号。我尝试了一个简单的 CSS 技巧来显示行号:

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

但这不适用于我的page。我相信引导程序会导致问题,因为当我尝试使用不同的文件时它可以工作,任何人都可以建议我解决方案。

【问题讨论】:

标签: html css


【解决方案1】:
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
  • 嗨 @Riddhi Rathod 你知道为什么它的向下滚动在 Mozilla 中不起作用,我该如何更改行号?
猜你喜欢
  • 2012-01-15
  • 2016-12-28
  • 2023-03-31
  • 2022-01-06
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2011-09-23
  • 2021-10-15
相关资源
最近更新 更多