Computer >> 컴퓨터 >  >> 프로그램 작성 >> CSS

CSS 하이픈 속성

<시간/>

하이픈 속성은 텍스트가 여러 줄에 걸쳐 줄 바꿈될 때 단어에 하이픈을 넣는 방법을 지정하는 데 사용됩니다. 다음 값을 가집니다 -

hyphens: none|manual|auto|initial|inherit;

예시

<!DOCTYPE html>
<html>
<head>
<style>
div {
   width: 50px;
   border: 2px dashed red;
}
.demo {
   -webkit-hyphens: manual;
   -ms-hyphens: manual;
   hyphens: manual;
}
</style>
</head>
<body>
<h1>Demo Heading</h1>
<h2>hyphens: manual property value</h2>
<div class="demo">This is a demo text.</div>
</body>
</html>

출력

CSS 하이픈 속성

예시

이제 다른 예를 살펴보겠습니다 -

<!DOCTYPE html>
<html>
<head>
<style>
div {
   width: 50px;
   border: 2px dashed red;
   color: blue;
}
.demo {
   -webkit-hyphens: auto;
   -ms-hyphens: auto;
   hyphens: auto;
}
</style>
</head>
<body>
<h1>Demo Heading</h1>
<h2>hyphens: auto property value</h2>
<div class="demo">This isssssss a demo text.</div>
</body>
</html>

출력

CSS 하이픈 속성