테이블 상단에 라인을 굵게 하고 싶습니다.
본문
수고하십니다.
테이블 상단(지역위에요)에 라인을 굵게해서 보여주고 싶은데
잘 모르겠어서요.
조언 좀 부탁드립니다.
<p>
<table align="center" bgcolor="#fafafa" cellpadding="10" cellspacing="10" style="border-color: #e5e5e5; border-style: solid; border-width: 1px; border-collapse: collapse; width: 100%;">
<tbody>
<tr>
<td style="border-style: solid; border-width: 1px; border-color: #e5e5e5; width: 20%;">지역</td>
<td style="border-style: solid; border-width: 1px; border-color: #e5e5e5; width: 80%;"> </td>
</tr>
<tr>
<td style="border-style: solid; border-width: 1px; border-color: #e5e5e5; width: 20%;">연락처</td>
<td style="border-style: solid; border-width: 1px; border-color: #e5e5e5; width: 80%;"> </td>
</tr>
<tr>
<td style="border-style: solid; border-width: 1px; border-color: #e5e5e5; width: 20%;">주소</td>
<td style="border-style: solid; border-width: 1px; border-color: #e5e5e5; width: 80%;"> </td>
</tr>
<tr>
<td style="border-style: solid; border-width: 1px; border-color: #e5e5e5; width: 20%;"> 태그</td>
<td style="border-style: solid; border-width: 1px; border-color: #e5e5e5; width: 80%;"> </td>
</tr>
</tbody>
</table>
</p>
답변 4
<p>
<table align="center" bgcolor="#fafafa" cellpadding="10" cellspacing="10" style="border-color: #e5e5e5; border-style: solid; border-width: 3px;border-left: 1px;border-right: 1px;border-bottom: 1px; border-collapse: collapse; width: 100%;">
<tbody>
<tr>
<td style="border-style: solid; border-width: 1px; border-color: #e5e5e5; width: 20%;">지역</td>
<td style="border-style: solid; border-width: 1px; border-color: #e5e5e5; width: 80%;"> </td>
</tr>
<tr>
<td style="border-style: solid; border-width: 1px; border-color: #e5e5e5; width: 20%;">연락처</td>
<td style="border-style: solid; border-width: 1px; border-color: #e5e5e5; width: 80%;"> </td>
</tr>
<tr>
<td style="border-style: solid; border-width: 1px; border-color: #e5e5e5; width: 20%;">주소</td>
<td style="border-style: solid; border-width: 1px; border-color: #e5e5e5; width: 80%;"> </td>
</tr>
<tr>
<td style="border-style: solid; border-width: 1px; border-color: #e5e5e5; width: 20%;"> 태그</td>
<td style="border-style: solid; border-width: 1px; border-color: #e5e5e5; width: 80%;"> </td>
</tr>
</tbody>
</table>
</p>
https://codepen.io/sinbi/pen/MWOqvjb
더 자세한 건 아래 게시판 참고해 작업해 보세요.
<style>
table {border-top:5px solid #cc0000;}
</style>
답변을 작성하시기 전에 로그인 해주세요.