웹솔루션개발 22년 노하우! 해피CGI의 모든것

[해피CGI][cgimall] CSS로 말줄임 효과 나타내기 본문

웹프로그램밍 자료실/HTML 자료

[해피CGI][cgimall] CSS로 말줄임 효과 나타내기

해피CGI윤실장 2017. 2. 21. 09:14

<!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>
 




 

 

홈페이지바로가기 

Comments