하면서도.., 맞게 제대로 하고 있는건지.. 더 좋은 다른 방법은 없는지..
잘 모르겠습니다. OTL
그리고, 아래 예에서 이상하게 DL에 정의한 보더와 백그라운드 속성이 안 먹습니다.
한 번 봐주시길 부탁드립니다.
그리고, 더 좋은 방법 있으면 알려주시면 더 감사하겠습니다..
미리 감사드립니다. ^^
Code: Select all
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <meta http-equiv="content-type" content="text/html; charset=euc-kr"> <title>입력양식테스트</title> <style type="text/css"> form fieldset { margin: 10px; padding: 10px; border: 1px solid #cfcfcf; } form legend { letter-spacing: 0.1em; color: #FF9900; } form dt label { padding-left: 5px; padding-right: 10px; } form dt, form dd { display: inline; padding: 2px 3px 2px 3px; } form dt { float: left; width: 120px; background-color: #ddd; } form dd { float: left; } form dl { clear: both; border-right: 1px solid #ccc; border-bottom: 1px solid #ccc; background-color: #efefef; } </style> </head> <body> <form name="form" id="form" method="post"> <fieldset> <legend>회사</legend> <dl> <dt><label>* 구분</label></dt> <dd> <label for="comdiv0"><input type="radio" name="comdiv" id="comdiv0" value="a" /> AAA</label> <label for="comdiv1"><input type="radio" name="comdiv" id="comdiv1" value="b" /> BBB</label><br /> <label for="comdiv2"><input type="radio" name="comdiv" id="comdiv2" value="c" /> CCC</label> </dd> </dl> </fieldset> <fieldset> <legend>담당자</legend> <dl> <dt><label>이 름</label></dt> <dd><input type="text" name="rname" id="rname" size="20" maxlength="30" /></dd> </dl> </fieldset> </form> </body> </html>