'CSS'에 해당되는 글 2건
- 2011/12/20 :: [css] textbox 영문 우선, 한글 우선 정하는 방법
- 2010/11/15 :: 이미지에 그림자 효과를 줘보자
Study
2011/12/20 13:23
[요구]
input 텍스트박스에 영문 우선이나 한글 우선을 정하고 싶다.
[해결]
input에 style="ime-mode:active" 속성항목을 추가한다.
active: 한글모드 변환 후 이후 한글모드
inactive: 영문모드 변환 후 이후 영문모드
disabled:
영문모드만 가능
auto: 자동
[예제]
<input type="text" style="ime-mod:active">
[출처] [css] textbox 영문 우선, 한글 우선 정하는 방법|작성자 가능성
Study
2010/11/15 18:35
이미지 생성할때 그림자 넣어서 만들라고 했다가
어디서 퍼다 삽입함
-ㅅ-
스타일부분
/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */
.shadow{
border:1px solid silver;
font:10pt arial;
position:relative;
display:inline;
background:white;
z-index:100
}
.shadow_inner{
overflow:hidden;
position:absolute;
top: -1000px;
filter:alpha(Opacity=10); /*modify to change the shade solidity/opacity, same as below*/
opacity:0.1; /*firefox 1.5 opacity*/
-moz-opacity:0.1; /*mozilla opacity*/
-khtml-opacity:0.1; /*opacity*/
z-index:10
}스크립트 부분