Computer >> Máy Tính >  >> Lập trình >> CSS

Đặt Căn chỉnh văn bản bằng CSS

Để đặt căn chỉnh văn bản bằng CSS, hãy sử dụng thuộc tính text-align. Sau đây là các giá trị thuộc tính có thể có -

text-align: left|right|center|justify|initial|inherit;

Ví dụ

Hãy để chúng tôi xem một ví dụ để đặt căn chỉnh văn bản -

<!DOCTYPE html>
<html>
<head>
<style>
.demo {
   -webkit-columns: auto auto; /* Chrome, Safari, Opera */
   -moz-columns: auto auto; /* Firefox */
   columns: auto auto;
   text-align: justify;
}
</style>
</head>
<body>
<h1>Machine Learning</h1>
<div class="demo">
Today’s Artificial Intelligence (AI) has far surpassed the hype of blockchain and quantum computing. This is due to the fact that huge computing resources are easily available to the common man. The developers now take advantage of this in creating new Machine Learning models and to re-train the existing models for better performance and results. The easy availability of High Performance Computing (HPC) has resulted in a sudden increased demand for IT professionals having Machine Learning skills.
</div>
</body>
</html>

Đầu ra

Đặt Căn chỉnh văn bản bằng CSS

Ví dụ

Bây giờ chúng ta hãy xem một ví dụ khác -

<!DOCTYPE html>
<html>
<head>
<style>
body {
   background-image: linear-gradient(to right, yellow,orange,yellow,green,blue,indigo,violet);
}
.demo {
   text-decoration: overline;
   text-decoration-color: yellow;
   font-variant:normal;
   text-align: center;
}
</style>
</head>
<body>
<h1>Examination Details</h1>
<p class="demo">Exam on 20th December.</p>
<p class="demo2">Exam begins at 9AM.</p>
</body>
</html>

Đầu ra

Đặt Căn chỉnh văn bản bằng CSS