'저장용/css'에 해당되는 글 3건

  1. 2016.11.21 [css] 액셀 출력시 column type TEXT 로 설정.
  2. 2014.10.30 [css] checkbox, radio 커스텀
  3. 2014.10.30 [css] input box 초기화하기

[css] 액셀 출력시 column type TEXT 로 설정.

|

숫자의 경우 .num

텍스트의 경우 .text 로 class에 넣어줌.


<style>

.num {mso-number-format:General;}

.text{mso-number-format:"\@";/*force text*/}

</style>

'저장용 > css' 카테고리의 다른 글

[css] checkbox, radio 커스텀  (0) 2014.10.30
[css] input box 초기화하기  (0) 2014.10.30
And

[css] checkbox, radio 커스텀

|

input type 중에 checkbox , radio 에 이미지넣기


.chk {width:20px; height:20px; background:url(이미지URL) no-repeat; background-size:20px 20px; border: 0;float: left;margin-left: 10px;margin-top: 5px;}

.chk:checked {width:20px; height:20px; background:url(이미지URL) no-repeat; background-size:20px 20px; }



'저장용 > css' 카테고리의 다른 글

[css] 액셀 출력시 column type TEXT 로 설정.  (0) 2016.11.21
[css] input box 초기화하기  (0) 2014.10.30
And

[css] input box 초기화하기

|

css 설정 도중 input 태그 관련 초기화가 필요할 경우사용.

border-radius:4px;

box-shadow: none;

font-size:1em;

-webkit-appearance:none;

-moz-appearance: none;

-o-appearance:none;

appearance: none;

'저장용 > css' 카테고리의 다른 글

[css] 액셀 출력시 column type TEXT 로 설정.  (0) 2016.11.21
[css] checkbox, radio 커스텀  (0) 2014.10.30
And
prev | 1 | next