์ด๋ฒ ํฌ์คํ
์์๋ CSS๋ฅผ ์ด์ฉํ ํ
์ด๋ธ ๊ด๋ จ ์์ฑ์ ์ค์ ํ๋ ๊ฒ์ ์์๋ณด๋๋ก ํ๊ฒ ์ต๋๋ค.
ํ
์ด๋ธ ๊ด๋ จ ์์ฑ์๋ ๋ค์๊ณผ ๊ฐ์ ๊ฒ๋ค์ด ์์ต๋๋ค.
-
border-collapse
-
border-spacing
-
caption-side
-
empty-cells
-
table-layout
์ด์ ์ด ์์ฑ๋ค์ ์ด๋ป๊ฒ ์ฌ์ฉํ๋์ง ํ๋ฒ ๋ณผ๊น์??? ^-^
The border-collapse Property:
์ด ์์ฑ์ ๋ค์ ๋๊ฐ์ง ๊ฐ์ ๊ฐ์ง ์ ์์ต๋๋ค. collapse ์ separate.
๋ค์์ ๋ ๊ฐ์ง ๊ฐ์ ๋ํ ์์ ์
๋๋ค.
<style type="text/css">
table.one {border-collapse:collapse;}
table.two {border-collapse:separate;}
td.a {
border-style:dotted;
border-width:3px;
border-color:#000000;
padding: 10px;
}
td.b {border-style:solid;
border-width:3px;
border-color:#333333;
padding:10px;
}
</style>
<table class="one">
<caption>Collapse Border Example</caption>
<tr><td class="a"> Cell A Collapse Example</td></tr>
<tr><td class="b"> Cell B Collapse Example</td></tr>
</table>
<br />
<table class="two">
<caption>Separate Border Example</caption>
<tr><td class="a"> Cell A Separate Example</td></tr>
<tr><td class="b"> Cell B Separate Example</td></tr>
</table>
|
์ง์ ํ
์คํธ ํด๋ณด์ธ์.
Collapse ์์ฑ๊ฐ์ ์ฃผ๊ฒ๋๋ฉด ํ
์ด๋ธ ๋ด์ ์
๋ค์ ๋ณด๋๊ฐ ๋ถ์ด์์ ๊ฒฝ์ฐ ํ์ค๋ก ๋ณด์ด๊ฒ ๋ฉ๋๋ค.
๋ฐ๋๋ก separate์์ฑ๊ฐ์ ์ฃผ๊ฒ๋๋ฉด ๋ถ์ด์๋ ๋ ์
์ ๋ณด๋๊ฐ ๋ฐ๋ก ๋จ์ด์ ธ์ ๋ณด์ด๊ฒ ๋ฉ๋๋ค.

The border-spacing Property:
์ด ์์ฑ์ ๋ณด๋ ์ฌ์ด์ ๊ฐ๊ฒฉ์ ๋์ฐ๋ ์์ฑ์
๋๋ค. ์์ฑ๊ฐ์ผ๋ก๋ ํ๋ ๋๋ ๋๊ฐ์ ๊ฐ์ ๊ฐ์ง ์ ์๊ณ , ์ด ๊ฐ์ ๊ธธ์ด์ ๋จ์์ฌ์ผ ํฉ๋๋ค.
๊ฐ์ ํ๋๋ง ์ค ๊ฒฝ์ฐ์๋ ๊ฐ๋ก, ์ธ๋ก์ ๋์ผํ ๊ฐ์ด ์ ์ฉ์ด ๋๋ฉฐ ๋๊ฐ์ ๊ฐ์ ์ค ๊ฒฝ์ฐ์๋ ์ฒซ์งธ๊ฐ์ด ๊ฐ๋ก ์คํ์ด์ค, ๋๋ฒ์งธ ๊ฐ์ด ์ธ๋ก ์คํ์ด์ค๋ฅผ ์ํ ๊ฐ์ผ๋ก ๊ฐ์ฃผ๋ฉ๋๋ค.
NOTE: Netscape 7 ๋๋ IE 6 ์์๋ ์ ์ฉ๋์ง ์๋๋ค๊ณ ํ๋ค์. ์์ง๋ IE 6 ์ฌ์ฉํ๋ ์ฌ๋์ด ์์์ง๋ ์๋ฌธ์ด์ง๋ง์.
<style type="text/css">
/* If you provide one value */
table.example {border-spacing:10px;}
/* This is how you can provide two values */
table.example {border-spacing:10px; 15px;}
</style>
|
์์ ํ๋ ์์ ์ ์์ค๋ฅผ ๋ณ๊ฒฝํด๋ณด๋๋ก ํ๊ฒ ์ต๋๋ค.
<style type="text/css">
table.one {
border-collapse:separate;
width:400px;
border-spacing:10px;
}
table.two {
border-collapse:separate;
width:400px;
border-spacing:10px 50px;
}
</style>
<table class="one" border="1">
<caption>Separate Border Example with border-spacing</caption>
<tr><td> Cell A Collapse Example</td></tr>
<tr><td> Cell B Collapse Example</td></tr>
</table>
<br />
<table class="two" border="1">
<caption>Separate Border Example with border-spacing</caption>
<tr><td> Cell A Separate Example</td></tr>
<tr><td> Cell B Separate Example</td></tr>
</table>
|
๊ฒฐ๊ณผ๋ ์๋์ ๊ฐ์ต๋๋ค.

์ง์ ํ
์คํธ ํด๋ณด๋ ๊ฒ ์์ง ๋ง์ธ์. ๊ผญ ์ด์!!! ^-^
The caption-side Property:
์ด ์์ฑ์ ์บก์
์ ์ด๋์ ์์น์ํฌ ๊ฒ์ธ์ง์ ๋ํ ์์ฑ์
๋๋ค. ์์ฑ๊ฐ์ผ๋ก๋ ๋ค์ ๋ค๊ฐ์ง ์ค ํ๊ฐ๋ฅผ ๊ฐ์ง ์ ์์ต๋๋ค. top, bottom, left or right. ๊ทธ๋ผ ๊ฐ๊ฐ์ ์์ ๋ฅผ ํ๋ฒ ๋ณผ๊น์??
NOTE: IE ์์๋ ์๋์ ์ํ ์ ์๋ค๋ ๊ตฐ์.
<style type="text/css">
caption.top {caption-side:top}
caption.bottom {caption-side:bottom}
caption.left {caption-side:left}
caption.right {caption-side:right}
</style>
<table style="width:400px; border:1px solid black;">
<caption class="top">
This caption will appear at the top
</caption>
<tr><td > Cell A</td></tr>
<tr><td > Cell B</td></tr>
</table>
<br />
<table style="width:400px; border:1px solid black;">
<caption class="bottom">
This caption will appear at the bottom
</caption>
<tr><td > Cell A</td></tr>
<tr><td > Cell B</td></tr>
</table>
<br />
<table style="width:400px; border:1px solid black;">
<caption class="left">
This caption will appear at the left
</caption>
<tr><td > Cell A</td></tr>
<tr><td > Cell B</td></tr>
</table>
<br />
<table style="width:400px; border:1px solid black;">
<caption class="right">
This caption will appear at the right
</caption>
<tr><td > Cell A</td></tr>
<tr><td > Cell B</td></tr>
</table>
|
๊ฒฐ๊ณผ๋ ์๋์ ๊ฐ์ต๋๋ค.

The empty-cells Property:
์ด ์์ฑ์ ๋น ์
๊ณผ ๊ด๋ จ๋ ์์ฑ์
๋๋ค. ์์ฑ๊ฐ์ผ๋ก๋ show, hide, inherit ์ค์ ํ๋๋ฅผ ๊ฐ์ง ์ ์์ต๋๋ค.
<style type="text/css">
table.empty{
width:350px;
border-collapse:separate;
empty-cells:hide;
}
td.empty{
padding:5px;
border-style:solid;
border-width:1px;
border-color:#999999;
}
</style>
<table class="empty">
<tr>
<th></th>
<th>Title one</th>
<th>Title two</th>
</tr>
<tr>
<th>Row Title</th>
<td class="empty">value</td>
<td class="empty">value</td>
</tr>
<tr>
<th>Row Title</th>
<td class="empty">value</td>
<td class="empty"></td>
</tr>
</table>
|
๊ฒฐ๊ณผ๋ ์๋์ ๊ฐ์ต๋๋ค.

The table-layout Property:
์ด ์์ฑ์ ๋ธ๋ผ์ฐ์ ์ ํ
์ด๋ธ์ ๋ณด์ฌ์ค ๋ ์ด๋ป๊ฒ ๋ณด์ฌ์ค ๊ฒ์ธ์ง๋ฅผ ์ปจํธ๋กค ํ ์ ์๊ฒ ํด์ฃผ๋ ์์ฑ์
๋๋ค. ์์ฑ๊ฐ์ผ๋ก๋ fixed, auto, ๋๋ inherit ์ ๊ฐ์ง ์ ์์ต๋๋ค.
์ธ๊ฐ์ง ๊ฐ์ ๋ํ ์ฐจ์ด์ ์ ํ๋ฒ ์์๋ณด๋๋ก ํ์ฃ .
NOTE: ์ฐธ๊ณ ๋ก ์ด ์์ฑ์ ๋ง์ ๋ธ๋ผ์ฐ์ ์์ ์ง์ํ์ง ์๋๋ค๊ณ ํฉ๋๋ค.
<style type="text/css">
table.auto
{
table-layout: auto
}
table.fixed
{
table-layout: fixed
}
</style>
<table class="auto" border="1" width="100%">
<tr>
<td width="20%">1000000000000000000000000000</td>
<td width="40%">10000000</td>
<td width="40%">100</td>
</tr>
</table>
<br />
<table class="fixed" border="1" width="100%">
<tr>
<td width="20%">1000000000000000000000000000</td>
<td width="40%">10000000</td>
<td width="40%">100</td>
</tr>
</table>
|
๊ฒฐ๊ณผ๋ ์๋์ ๊ฐ์ต๋๋ค.

๊ผญ ์ค์ค๋ก ํ
์คํธ ํด๋ณด๊ณ ๊ฒฐ๊ณผ๋ฅผ ํ์ธํ์ธ์.
๋ธ๋ผ์ฐ์ ๋ณ๋ก ํด๋ณด๊ณ ๋ธ๋ผ์ฐ์ ์ ๋ฒ์ ๋ณ๋ก ํด๋ณด๊ณ ์ด์ฌํ ๊ณต๋ถํด์ผ ๊ณ ์๊ฐ ๋ ์ ์์ต๋๋ค.
Reference : http://www.tutorialspoint.com/css/css_tables.htm