velog.io/@vnthf/웹폰트-최적화-하기

'개발 > HTML&CSS' 카테고리의 다른 글

Table Width 100% 내용 말줄임, ellipsis  (0) 2018.02.13
css default style  (0) 2017.03.10

/* css */

table {

width: 100%;

    border-spacing: 0;

    border-collapse: separate;

border-left: 1px solid #000;

border-top: 1px solid #000;

}


th, td {

border-right: 1px solid #000;

border-bottom: 1px solid #000;

}


.text-ellipsis {

display: table;

table-layout: fixed;

width: 100%;

white-space: nowrap;

}

.text-ellipsis > * {

display: table-cell;

overflow: hidden;

text-overflow: ellipsis;

}



/* html */

<table>

<colgroup>

<col style="width: 10%" />

<col style="width: 70%" />

<col style="width: 20%" />

</colgroup>

<thead>

<tr>

<th>No</th>

<th>제목</th>

<th>등록일</th>

</tr>

</thead>

<tbody>

<tr>

<td>0000</td>

<td><div class="text-ellipsis"><a href="#">동해물과 백두산이 마르고 닳도록 하느님이 보우하사 우리나라 만세</a></div></td>

<td>0000-00-00</td>

<tr>

<tr>

<td>0000</td>

<td><div class="text-ellipsis"><p>무궁화 삼천리 화려 강산</p></div></td>

<td>0000-00-00</td>

<tr>

<tr>

<td>0000</td>

<td><div class="text-ellipsis"><span>대한민국 대한으로 길이 보전하세</span></div></td>

<td>0000-00-00</td>

<tr>

<tbody>

</table>

'개발 > HTML&CSS' 카테고리의 다른 글

웹폰트 최적화하기  (0) 2020.08.18
css default style  (0) 2017.03.10

/*******************************************/

/* Default Style */

/******************************************/

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body, form { width: 100%; height: 100%; }

header, footer, section, aside, nav, article { display: block; }

input, select, img, div { vertical-align: middle; }

img, fieldset { border: none;  }

ul, ol, dl { list-style: none; }

'개발 > HTML&CSS' 카테고리의 다른 글

웹폰트 최적화하기  (0) 2020.08.18
Table Width 100% 내용 말줄임, ellipsis  (0) 2018.02.13

+ Recent posts