폼 배경을 투명하게 하는 방법?? 정보
폼 배경을 투명하게 하는 방법??본문
댓글 전체
input박스라면...
-----------------------------------------------------------------------------------------------------------------
<style type="text/css">
.input {background-color:transparent;border-width:0px;border-bottom: dotted #000000 1px;}
</style>
-----------------------------------------------------------------------------------------------------------------
input박스안에 적용된 class속성(예를들면 "class=ed" 등등)은 지워줍니다...
테스트 안해봤으니 피드백 해주세요...
-----------------------------------------------------------------------------------------------------------------
<style type="text/css">
.input {background-color:transparent;border-width:0px;border-bottom: dotted #000000 1px;}
</style>
-----------------------------------------------------------------------------------------------------------------
input박스안에 적용된 class속성(예를들면 "class=ed" 등등)은 지워줍니다...
테스트 안해봤으니 피드백 해주세요...
해결했습니다. 시그너스님 코멘트랑 비슷하게 처리했습니다. 감사합니다.
<input type=text에 그런 스타일이 적용 되는군요. ^^