인터넷정보

inupt 태그에 밑줄만 넣는 방법입니다.

알 수 없는 사용자 2007. 10. 17. 00:07
먼저 스타일시트에
input.underline {
 border-left-width:0;
 border-right-width:0;
 border-top-width:0;
 border-bottom-width:1;
}

이렇게 써주고 input 태그에
<input class="underline" ...>

or

<html> <head>
<style>
input.underline {border:0;border-bottom:1 solid #FF0000;}
</style>
</head>
<body>
<input class="underline" type="text" value="ABCDEFGH">
</body>
</html>
반응형