제가 테이블을 짜는데
배경색만 opacity 60이고 그 안에 담긴 레이어나 글씨는 또렷하게 (opacity 100) 하고싶은데요,
그렇게 안에 속성은 따로 주는 법은 없나요? ㅠ
배경이 흐려지면 그 안에 내용들도 다 흐려지더라구요 ;ㅅ;
-----------------------
첨부
<html>
<head>
<style>
<!--
body{background:url(bgimage.gif) no-repeat fixed left top #455d7f;}
table{border-collapse:collapse}
td.head1{background:000017; filter:Alpha(Opacity=60);}
td.head2{background:000017; filter:Alpha(Opacity=30);}
td.foot{background:e0e0e0; filter:Alpha(Opacity=30);}
div#logo{float;width:320; height=100;}
div#board{float;width:680; height=90%; margin:40px; background-color:white; backgroundAlpha:50;}
-->
</style>
</head>
<body>
<table width=950 height=100% border=1 align=center>
/* head */
<tr> <td class=head1 height=100 align=right colspan=2>
<div id=logo><img src=logos.gif></div>
</td>
</tr>
<tr> <td class=head2 height=30 colspan=2> </td> </tr>
/* main body */
<tr>
<td>
<div id=board></div>
</td>
/* side menu */
<td width=200> 메뉴 </td>
</tr>
/* 카피라이트 */
<tr>
<td class=foot height=30 colspan=2><center><font color=white>copyright</font></center></td>
</tr>
</body>
</html>
filter 속성 주는건 상관없는데 다른 브라우져 위해서 opacity 속성도 좀 줘... 그리고 글자 같은 경우는 그냥 absolute된 div하나 넣어서 포토샵의 layer 처럼 올려둬
그러고는 싶은데 ㅠ 그냥 둥둥 떠다니게 하고싶어서... 음..
그럼 배경 div를 absolute로하고 layer를 다른거보다 밑에두면 돼겠네.
음... 배경자체를 div로! 고마워요 ^^
배경 깔고 그위에 컨텐츠 넣을 레이어 하나 더 깔면 된다.