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

CSS3를 사용하여 열 간격 설정

<시간/>

CSS3를 사용하여 열 간격을 설정하려면 column-gap 속성을 사용하십시오. 값을 -

로 설정할 수 있습니다.
column-gap: length|normal|initial|inherit;

예시

<!DOCTYPE html>
<html>
<head>
<style>
.demo {
   column-count: 4;
   -webkit-column-count: 4; /* Chrome, Safari, Opera */
   -moz-column-count: 4; /* Firefox */
   -webkit-column-gap: 25px; /* Chrome, Safari, Opera */
   -moz-column-gap: 25px; /* Firefox */
   column-gap: 25px;
}
</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>

출력

CSS3를 사용하여 열 간격 설정

예시

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

<!DOCTYPE html>
<html>
<head>
<style>
.demo {
   column-count: 2;
   -webkit-column-count: 2; /* Chrome, Safari, Opera */
   -moz-column-count: 2; /* Firefox */
   -webkit-column-gap: normal; /* Chrome, Safari, Opera */
   -moz-column-gap: normal; /* Firefox */
   column-gap: normal;
}
</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>

출력

CSS3를 사용하여 열 간격 설정