반응형
보통 javscript 를 이용해서 key press 등의 이벤트에 대문자로 바꾸는것으로 작업을 많이 했는대
간단하게 style 로도 가능하다.
<input type="text" name="이름" value="" style="text-transform:uppercase;" />
정말 간단하다.
css 에 추가해두어도 된다.
http://www.w3schools.com/cssref/pr_text_text-transform.asp
CSS Syntax
text-transform: none|capitalize|uppercase|lowercase|initial|inherit;
Property Values
Value | Description |
---|---|
none | No capitalization. The text renders as it is. This is default |
capitalize | Transforms the first character of each word to uppercase |
uppercase | Transforms all characters to uppercase |
lowercase | Transforms all characters to lowercase |
initial | Sets this property to its default value. Read about initial |
inherit | Inherits this property from its parent element. Read about inherit |
반응형
'Story > html/css' 카테고리의 다른 글
window sapari 브라우져에서 한자가 깨져보일때 (0) | 2017.12.14 |
---|---|
Youtube 연속재생 loop (0) | 2016.12.15 |
파일첨부에 이미지만 첨부할 수 있도록 처리 input file (0) | 2016.03.09 |
반응형 및 여러 디바이스 미리보기 (0) | 2015.09.21 |
카카오스토리 공유하기 (0) | 2015.07.13 |