কম্পিউটার

CSS rgb() ফাংশন


rgb() ফাংশন RGB রঙের মান সেট করতে ব্যবহৃত হয়। ফাংশনের প্যারামিটারটি 0 থেকে 255 পর্যন্ত শতাংশ বা মানের মধ্যে রঙের তীব্রতা সেট করে।

উদাহরণ

আসুন প্রথমে CSS -

-এ rgb() প্রয়োগ করার একটি উদাহরণ দেখি
<!DOCTYPE html>
<html>
<head>
<style>
div {
   text-align: justify;
   text-justify: inter-word;
   color: rgb(213,33,33);
   background-color: rgb(211,211,211);
   font-size: 1.1em;
}
</style>
</head>
<body>
<h2>Demo Heading</h2>
<div>This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. </div>
</body>
</html>

আউটপুট

CSS rgb() ফাংশন

উদাহরণ

এখন আরেকটি উদাহরণ দেখা যাক -

<!DOCTYPE html>
<html>
<head>
<style>
.demo {
   grid-area: newArea;
   font-size: xx-large;
}
.item3 {
   font-size: small;
}
.item4 {
   font-size: medium;
}
.item5 {
   font-size: x-large;
}
.grid-container {
   display: grid;
   grid-template-areas:
   'newArea newArea . . .'
   'newArea newArea . . .';
   grid-gap: 5px;
   background-color: rgb(0,255,255);
   padding: 5px;
}
.grid-container > div {
   background-color: rgb(255, 50, 80);
   text-align: center;
   padding: 5px 0;
}
</style>
</head>
<body>
<h1>Heading One</h1>
<p>Set some random numbers</p>
<div class="grid-container">
<div class="demo">250</div>
<div class="item2">120</div>
<div class="item3">333</div>
<div class="item4">298</div>
<div class="item5">645</div>
<div class="item6">543</div>
<div class="item7">555</div>
</div>
</body>
</html>

আউটপুট

CSS rgb() ফাংশন


  1. CSS-এ টেক্সট-জাস্টিফাই প্রপার্টি

  2. CSS লিনিয়ার-গ্রেডিয়েন্ট() ফাংশন

  3. সিএসএস অধিকার সম্পত্তি

  4. CSS ব্যবহার করে টেক্সট ইন্ডেন্টেশন