পাঠ্য ইন্ডেন্টেশনের জন্য, CSS-এ পাঠ্য-ইন্ডেন্ট বৈশিষ্ট্য ব্যবহার করুন। এটি একটি অনুচ্ছেদে প্রথম লাইনের ইন্ডেন্টেশনের জন্য।
উদাহরণ
আসুন এখন একটি উদাহরণ দেখি -
<!DOCTYPE html> <html> <head> <style> div { text-indent: 30px; } </style> </head> <body> <h1>Demo Heading</h1> <div> <p>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. </p> </div> </body> </html>
আউটপুট
উদাহরণ
আসুন এখন আরেকটি উদাহরণ দেখি -
<!DOCTYPE html> <html> <head> <style> div { text-indent: 15em; } </style> </head> <body> <h1>Demo Heading</h1> <div> <p>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. </p> </div> </body> </html>
আউটপুট