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

CSS의 문자 간격


문자 사이의 간격은 CSS 문자 간격 속성을 사용하여 조정할 수 있습니다. CSS 문자 간격 속성의 구문은 다음과 같습니다-

구문

Selector {
   letter-spacing: /*value*/
}

다음 예는 CSS 문자 간격 속성을 보여줍니다 -

예시

<!DOCTYPE html>
<html>
<head>
<style>
div {
   box-shadow: 0 -10px 0 1px lightpink;
}
li {
   letter-spacing: 5px;
   line-height: 1.2em;
}
</style>
</head>
<body>
<h2>Demo Heading</h2>
<div>
<ol>
<li>This is demo text!</li>
<li>This is it!</li>
<li>This is another demo text!</li>
</ol>
</div>
</body>
</html>

출력

이것은 다음 출력을 제공합니다 -

CSS의 문자 간격

예시

<!DOCTYPE html>
<html>
<head>
<style>
dt {
   font-size: 20px;
   letter-spacing: -2px;
   word-spacing: 1em;
   color: white;
   font-style: italic;
   background-color: cadetblue;
}
dd {
   letter-spacing: 2pt;
}
</style>
</head>
<body>
<h2>Programming Languages and Databases</h2>
<dl>
<dt>Java</dt>
<dd>A programming language developed by James Gosling.</dd>
<dt>C++</dt>>
<dd>A programming language developed by Bjarne Stroustrup.</dd>
<dt>MySQL</dt>
<dd>MySQL is an open-source relational database management system.</dd>>>
</body>
</html>

출력

이것은 다음 출력을 제공합니다 -

CSS의 문자 간격