Để chuyển đổi văn bản trong CSS, hãy sử dụng thuộc tính biến đổi văn bản với các giá trị sau -
text-transform: none|capitalize|uppercase|lowercase|initial|inherit;
Ví dụ
<!DOCTYPE html>
<html>
<head>
<style>
div {
line-height: 1.9;
text-transform: uppercase;
}
</style>
</head>
<body>
<h1>Demo Heading</h1>
<div>
<p>This is demo text.<br>
This is another demo text.
</p>
</div>
</body>
</html> Đầu ra
Ví dụ
Hãy để chúng tôi xem một ví dụ khác -
<!DOCTYPE html>
<html>
<head>
<style>
div {
text-transform: lowercase;
}
</style>
</head>
<body>
<h1>Demo Heading</h1>
<div>
<p>THIS is demo text.<br>
This is ANOTHER demo text.
</p>
</div>
</body>
</html> Đầu ra