반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- interrupted()
- interrupt()
- first-child
- include액션태그
- String char[] 형변환
- Linux셋팅
- Daemon()
- StringWriter
- ID중복
- 상관서브쿼리
- 리눅스셋팅
- include지시자
- 메모리스트림
- Linux세팅
- StringReader
- MemoryStream
- 아이디중복
- 스레드그룸
- char[] String 형변환
- InputDialog
- 동기화
- sleep()메소드
- 표현 언어
- ObjectInputStream
- 상관 서브 쿼리
- ThreadGroup()
- first-of-child
- isinterrupted()
- 리눅스세팅
- include 지시자
Archives
- Today
- Total
다연이네
[days03] 표 만들고 간단한 속성 넣기 본문
반응형
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<style>
table, th, td{
border-collapse: collapse;
}
th,td{
padding:2px;
}
/*tbody tr:nth-child(even){ /*odd, even 홀 짝 */
tbody tr:nth-child(odd){
background-color: #eee;
}
th{
color:white;
background-color: black;
}
tr{
border-bottom:1px dotted gray; /* 밑부분만 점선 */
}
</style>
</head>
<body>
<!-- table[border="1" style="width:100%"]>(tr>th*3>lorem1)+tr*4>td*3>lorem1-->
<table style="width:100%"> <!--border="1" 은 바깥 선 두께 -->
<caption>dept information</caption>
<theader>
<tr>
<th>deptno</th>
<th>dname</th>
<th>loc</th>
</tr>
</theader>
<tbody>
<tr>
<td>Lorem.</td>
<td>Distinctio.</td>
<td>Quo!</td>
</tr>
<tr>
<td>Lorem.</td>
<td>Maxime.</td>
<td>Harum.</td>
</tr>
<tr>
<td>Lorem.</td>
<td>Quis?</td>
<td>Libero.</td>
</tr>
<tr>
<td>Lorem.</td>
<td>Totam.</td>
<td>Doloribus.</td>
</tr>
</tbody>
<tfooter>
</tfooter>
</table>
</body>
</html>
반응형
'Web > HTML' 카테고리의 다른 글
[days03] 토글 버튼 (0) | 2020.12.02 |
---|---|
[days03] 버튼 1. HTML 2. Javascript 3.JQuery (0) | 2020.12.02 |
[days03] emmit 사용법 (0) | 2020.12.02 |
[days03] emmit 설치 (0) | 2020.12.02 |
[days02] 테이블 - 셀 병합, 체크할 수 있는 표 만들기 (0) | 2020.12.02 |
Comments