hiding text using “text-indent”

后端 未结 11 2198
北海茫月
北海茫月 2021-02-13 11:26

I\'m trying to hide some text inside an

  • element using CSS by setting text-indent: -999px;.
    For some reason this doesn\'t work when I set
  • 11条回答
    •  谎友^
      谎友^ (楼主)
      2021-02-13 11:53

      Add overflow hidden then it will work fine.

      div{
          text-indent: 100%;
          overflow: hidden;
      }
      search

    提交回复
    热议问题