css li:last-child선택자가 동작을 안하네요
본문
소스코드는 아래와 같은데요
이미지의 게시판추출중 제일 밑에 있는거만 border-bottom:0px solid #e9e9e9;를 적용하고 싶은데
안되네요 뭐가 잘못된거죠?
<style>
.m_bod{ border-bottom:1px solid #e9e9e9 ; }
.m_bod:last-child { border-bottom:0px solid #e9e9e9; }
</style>
<div class="m_bod">
<table border="0" cellpadding="0" cellspacing="0" style="width:100%; ">
<tr>
<td align="left" style="text-align:left; height:50px">
<div class="ellipsis_line1 font_16" style="width:520px; height:18px; overflow:hidden">
<a href="bbs_detail.php?bbs_num={{BOARD.number}}&b_category={{_GET.b_category}}&tb={{B_CONF.tbname}}" style="letter-spacing:-1px; color:#333">
{{BOARD.bbs_title}}
</a>
</div>
</td>
<td align="right" style="color:#999999;" class="font_14 font_tahoma">{{BOARD.bbs_date}}</td>
</tr>
</table>
</div>