티스토리 뷰

css

text-indent not working

J_estrella 2017. 6. 3. 00:04

<html>

  <ul>

<li class="where_you_are">

          <i class="process__numbering">02</i>약관동의

          <span class="where_you_are__hidden_text">

             현재 '약관동의' 과정에 있습니다.

          </span>

      </li>

  </ul>

</html>


/*css*/


.where_you_are__where_you_are__hidden_text{   

  text-indent: -9999px;

}





여기서 text-indent가 먹히지 않는 문제가 발생했다. 

원인은 'inline태그에 text-indent가 적용이 안 된다'는 데에 있었다. 

이에 대한 해결방법은 inline태그를 block태그로 바꿔주거나, inline태그에 block속성(display: block 혹은 display:inline-block)을 부여해야 한다. 

그러나 하위브라우저와의 호환성을 고려하고 있어서 display:block속성을 부여해서 문제를 해결했다. 


해결후--


/*css*/


.where_you_are__where_you_are__hidden_text{   

  display:block;  

  text-indent: -9999px;

}




'css' 카테고리의 다른 글

Grid  (0) 2020.08.28
gnb hover 시에 하위 depth항목들 위치 조정  (0) 2017.07.09
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2025/05   »
1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31
글 보관함