ডিসপ্লে ইনলাইন-ব্লক প্রোপার্টি ভ্যালু সহ সেট করা উপাদানটি একটি উপাদানকে ইনলাইন-লেভেল ব্লক কন্টেইনার হিসেবে প্রদর্শন করতে ব্যবহৃত হয়।
উদাহরণ
আসুন এখন CSS -
-এ ইনলাইন-ব্লক প্রপার্টির মান প্রয়োগ করার একটি উদাহরণ দেখি<!DOCTYPE html> <html> <head> <style> p { background-color: orange; color: white; } p.demo { display: inline-block; } </style> </head> <body> <h1>Student Result</h1> <div> The result of MCA student will be declared on <p class="demo">20th Decemeber 2019</p>. Check the website on the same day at 8PM. </div> </body> </html>
আউটপুট
উদাহরণ
আসুন এখন আরেকটি উদাহরণ দেখি -
<!DOCTYPE html> <html> <head> <style> p { background-color: orange; color: white; } p.demo1 { display: none; } p.demo2 { display: inline-block; } </style> </head> <body> <h1>Match Details</h1> <div> Match will begin at <p class="demo1">9AM</p> 10AM on 20th December. </div> <div> Match will end at <p class="demo2">5PM</p> on 20th December. </div> </body> </html>
আউটপুট