CSS বর্ডার-প্রস্থ বৈশিষ্ট্য একটি উপাদানের সীমানার জন্য প্রস্থ নির্দিষ্ট করতে ব্যবহৃত হয়। এছাড়াও আমরা বর্ডার-টপ-প্রস্থ, বর্ডার-ডান-প্রস্থ, সীমানা-বাম-প্রস্থ এবং সীমানা-ডান-প্রস্থ বৈশিষ্ট্য ব্যবহার করে পৃথক পক্ষের জন্য প্রস্থ সেট করতে পারি।
সিনট্যাক্স
CSS বর্ডার-প্রস্থ সম্পত্তির সিনট্যাক্স নিম্নরূপ-
Selector { border-width: /*value*/ }
উদাহরণ
নিম্নলিখিত উদাহরণগুলি CSS বর্ডার-প্রস্থ বৈশিষ্ট্য −
কে চিত্রিত করে<!DOCTYPE html> <html> <head> <style> #main { border-bottom-width: 20px; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; } div { margin: auto; height: 100px; width: 80px; border-style: double; border-width: 5px; } div > div { margin-top: 15px; height: 50px; width: 50px; border-style: dashed; border-color: red; border-width: thin; text-align: center; line-height: 50px; } </style> </head> <body> <div id="main"> <div>demo</div> </div> </body> </html>
আউটপুট
এটি নিম্নলিখিত আউটপুট দেয় -
উদাহরণ
<!DOCTYPE html> <html> <head> <style> p { padding: 2%; border-style: ridge; border-width: 4px; border-color: indianred; } q { border-style: solid; border-width: thin; text-align: center; font-style: italic; } </style> </head> <body> <p> Student details are covered here. </p> <hr> <q>Education is the most powerful weapon which you can use to change the world.</q> </body> </html>
আউটপুট
এটি নিম্নলিখিত আউটপুট দেয় -