묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
테이블 너비는 계산을 해서 넣을 수 없나요?
2004.09.05 11:13
홈페이지에 테이블을 넣으려고 하는데요,
화면 전체넓이(100%) 에서 딱 82픽셀을 뺀 테이블을 만들고 싶습니다.
<table width="100%-82px">
이런식으로 하니까 당연히 안되더군요 -_-;;;;
어떻게 방법이 없을까요?
화면 전체넓이(100%) 에서 딱 82픽셀을 뺀 테이블을 만들고 싶습니다.
<table width="100%-82px">
이런식으로 하니까 당연히 안되더군요 -_-;;;;
어떻게 방법이 없을까요?
댓글 3
-
드림팀
2004.09.05 12:10
-
▷◁ 多異
2004.09.08 14:00
테이블속에 테이블을 넣는다면 가능하지요~
2칸짜리 테이블을 만들어서 테이블 전체크기는 가로100%로 주고 2번째 칸에 가로를 82로 주면
나머지는 브라우저가 자연히 알아서 맞추겠죠~ -
▷◁ 多異
2004.09.08 14:05
<body topmargin="0" leftmargin="0">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>내용</td>
<td width="82"> </td>
</tr>
</table>
</body>
혹은 한칸짜리 테이블을 만들어서 오른쪽에 padding을 82로 준 다음 그 안에 100%짜리 테이블을 만들어 넣어도 되구요~
<body topmargin="0" leftmargin="0">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td style="padding:0 82 0 0;"><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>내용</td>
</tr>
</table></td>
</tr>
</table>
</body>
<body topmargin="0" leftmargin="0">
<div id="my" style="position:absolute; right:82px;">
<table border=1 width=100% cellpadding="0" cellspacing="0">
<tr>
<td width=100% height=100%>내용<td>
</tr>
</table>
</div>
</body>