<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>¸»ÁÙÀÓ(...)</title>
<style>
.long {
width:100px;
overflow:hidden;
text-overflow:visibile;
border:1px solid #000;
margin-bottom:20px;
}
.short {
width:100px;
overflow:hidden;
text-overflow:ellipsis;
white-space:nowrap;
border:1px solid red;
}
</style>
</head>
<body>
<div class="long">¸»ÁÙÀÓÀº È°¿ëÀÌ Á¤¸»·Î ½±³×¿ä!!</div>
<div class="short">¸»ÁÙÀÓÀº È°¿ëÀÌ Á¤¸»·Î ½±³×¿ä!!</div>
</body>
</html>