কম্পিউটার

CSS3 ব্যবহার করে কলাম গ্যাপ সেট করা


CSS3 ব্যবহার করে কলাম গ্যাপ সেট করতে, কলাম-গ্যাপ প্রপার্টি ব্যবহার করুন। আপনি −

হিসাবে মান সেট করতে পারেন
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 ব্যবহার করে কলাম গ্যাপ সেট করা


  1. CSS ব্যবহার করে লিঙ্কের রঙ সেট করা

  2. CSS3 ব্যবহার করে স্বচ্ছ বাক্সে পাঠ্য

  3. CSS3 ব্যবহার করে উপাদানের 2D রূপান্তর

  4. CSS3 ব্যবহার করে ওয়ার্ড ব্রেকিং নিয়ম উল্লেখ করুন