이런 테이블 css 를 익스9이상에서도 보이게 css 할려면 어떻게하나요??
본문
이런 테이블 css 를 익스9이상에서도 보이게 css 할려면 어떻게하나요??
<table border="1" width='98%' cellspacing='0' cellpadding='3' bgcolor='#e9e9e9' bordercolordark="white" bordercolorlight="#CFCFCF">
<tr bgColor="#ffffff">
<td width="100" bgcolor="#e9e9e9" align=center>전화번호</td>
<tr bgColor="#ffffff">
<td width="100" bgcolor="#e9e9e9" align=center>전화번호</td>
답변 1
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
* {margin: 0; padding: 0;}
table{
margin: 100px;
border-collapse: collapse;
border-spacing: 0;
}
table{border: 1px solid #e9e9e9;}
table tr{border-bottom: 1px solid #e9e9e9;}
table tr td{background-color: #f9f9f9;}
table div{display: block; width: 100%; height: 100%; padding: 20px; border-top: 1px solid #fff; border-left: 1px solid #fff;}
</style>
</head>
<body>
<table>
<tbody>
<tr>
<td><div>전화번호</div></td>
</tr><tr>
<td><div>전화번호</div></td>
</tr>
</tbody>
</table>
</body>
</html>
저라면 td안에 div 넣고 이 div 로 흰색 하이라이트를 줄것같습니다
답변을 작성하시기 전에 로그인 해주세요.