1. 2007.10.16 네이트온 폰트
  2. 2007.10.16 스타일 예제

네이트온 폰트

본 글의 압축 파일을 다운 로드 받아서 압축을 푼뒤..
C:\Program Files\NATEON\BIN 으로 갑니다.

사용자 삽입 이미지


사용자 삽입 이미지

간단하죠?? ^^;;;
마지막 이미지에 별표로 해둔거 꼭! 꼭! 꼭! 덮어쓰기로 하셔야 해요.

Emoticons(colored).zip

아래의 파일을 압축 파일을 다운 로드 받으시면 됩니다.. ^^

 

스타일 예제

◆ ReadOnly 속성에 따라 다른 스타일
.textboxReadonlyBackground {
    border-width: 1px;
    border-collapse: collapse;
    background-color: expression((this.readOnly) ? '#ffffff' : '#000000');
    border-style: inset;
    border: expression((this.type == 'checkbox' || this.type == 'radio') ? '' : '1px solid gray');
}
</style>
<input type="text" class="textboxReadonlyBackground">
<input type="text" class="textboxReadonlyBackground" readOnly="true">
◆ TextBox의 테두리(Border) 안보이게 하기
.textboxBorderOff {
    clear: none;
    border: 0px none;
    float: none;
    background-color: transparent;
}
</style>
<input type="text" class="inputBorderOff">
Return top