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

CSS를 사용한 텍스트 변환

<시간/>

CSS text-transform 속성을 사용하면 요소의 텍스트 대문자를 설정할 수 있습니다. 대문자, 소문자, 대문자, 전체 너비, 전체 크기 가나 및 없음 값을 사용할 수 있습니다.

구문

CSS text-transform 속성의 구문은 다음과 같습니다 -

Selector {
   text-transform: /*value*/
}

예시

다음 예는 CSS text-transform 속성을 보여줍니다 -

<!DOCTYPE html>
<html>
<head>
<style>
h2 {
   text-transform: uppercase;
}
.demo {
   text-transform: lowercase;
}
q {
   text-transform: capitalize;
   font-style: italic;
}
</style>
</head>
<body>
<h2>WordPress</h2>
<q>WordPress is open source software you can use to create a beautiful website, blog, or app.</q>
<p class="demo">34% of the web uses WordPress, from hobby blogs to the biggest news sites online.</p>
</body>
</html>

출력

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

CSS를 사용한 텍스트 변환

예시

<!DOCTYPE html>
<html>
<head>
<style>
div {
   background-color: lightgreen;
   margin: auto;
   text-align: center;
}
p {
   width: 80%;
   background-color: aquamarine;
   text-decoration: uppercase;
}
article {
   background-color: darksalmon;
   text-transform: lowercase;
}
</style>
</head>
<body>
<h2>What is Magento?</h2>
<div>
<p>Magento is an open-source e-commerce platform written in PHP.</p>
<article>
Build your own branded store powered by Magento Commerce and Amazon. Choose from 4,600 themes and extensions in the Magento Marketplace as well as more than 300,000 Magento developers.
</article>
</div>
</body>
</html>

출력

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

CSS를 사용한 텍스트 변환