홈페이지 질문.도와주세요 1000포인트겁니다. 정보
홈페이지 질문.도와주세요 1000포인트겁니다.첨부파일
본문
그누보드로 홈페이지 만드는중 안되는게 있어서.
그림과 같이 분계선을 어케 만드는지 알려주세요. 스크롤바 생기는건 아는데요.
저렇게 딱 한선으로 분계되는방법을 알려주세요. 그리고 도표만드는것도 알려주시면 감사하겠습니다.;;
댓글 전체
메뉴에 사용하실거라면.
black은 말씀하신 분계선의 색입니다.
border는 굵기이구요. width는 너비, height는 높이입니다.
<table border="1" cellspacing="0" bordercolordark="white" bordercolorlight="black" width="150" height="100">
<tr>
<td width="150"> </td>
</tr>
<tr>
<td width="150"> </td>
</tr>
<tr>
<td width="150"> </td>
</tr>
<tr>
<td width="150"> </td>
</tr>
<tr>
<td width="150"> </td>
</tr>
<tr>
<td width="150"> </td>
</tr>
</table>
black은 말씀하신 분계선의 색입니다.
border는 굵기이구요. width는 너비, height는 높이입니다.
<table border="1" cellspacing="0" bordercolordark="white" bordercolorlight="black" width="150" height="100">
<tr>
<td width="150"> </td>
</tr>
<tr>
<td width="150"> </td>
</tr>
<tr>
<td width="150"> </td>
</tr>
<tr>
<td width="150"> </td>
</tr>
<tr>
<td width="150"> </td>
</tr>
<tr>
<td width="150"> </td>
</tr>
</table>
여러가지 방법중 한가지입니다.
css이용하셔서 정의해주면 됩니다.
<style type="text/css">
.LeftLine { border-left-width:1; border-left-style:solid; border-left-color:#00cc99f; }
</style> 를 파일 윗부분에 또는 스타일시트용 폴더에 넣어놓으시고 링크를걸던지 하시고,
<table class='LeftLine'> 하면 테이블 좌측에 선이 또는 <td>에다가 class='LeftLine' 를 넣어주시면 <td>좌측으로 선이 하나가 생깁니다. 위쪽에 선이 생기게 하실려면 left를 top로 우측에 생기게 할려면 right 아래에 생기게 할려면 bottom.... 두께는 width thin thick등, 형태는 style 직선 점선 등등.. 그림에 있는 것은 아마도 이런방법을 이용한것 같습니다요.
css이용하셔서 정의해주면 됩니다.
<style type="text/css">
.LeftLine { border-left-width:1; border-left-style:solid; border-left-color:#00cc99f; }
</style> 를 파일 윗부분에 또는 스타일시트용 폴더에 넣어놓으시고 링크를걸던지 하시고,
<table class='LeftLine'> 하면 테이블 좌측에 선이 또는 <td>에다가 class='LeftLine' 를 넣어주시면 <td>좌측으로 선이 하나가 생깁니다. 위쪽에 선이 생기게 하실려면 left를 top로 우측에 생기게 할려면 right 아래에 생기게 할려면 bottom.... 두께는 width thin thick등, 형태는 style 직선 점선 등등.. 그림에 있는 것은 아마도 이런방법을 이용한것 같습니다요.