달력

42026  이전 다음

  • 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

Input 태그를 아래와 같이 사용할 경우 
문제 : <input type="text" name="금액" style="width:80px; text-align:right" >

캐럿(마우스커서) 가 사라질 수가 있다  INPUT 에 캐럿이 가려짐

이경우 padding-right:1px 를 사용하면 해결할 수 있다.

해결 : <input type="text" name="금액" style="width:80px; text-align:right; padding-right:1px" >
Posted by InuxKr
|