নীচের সীমানার শৈলী সেট করতে, বর্ডার-নিচ-স্টাইল বৈশিষ্ট্য ব্যবহার করুন। আপনি যে সীমানার মানগুলি সেট করতে পারেন তা হল, ডটেড, ডবল, ড্যাশড, সলিড ইত্যাদি।
উদাহরণ
আপনি নিচের বর্ডার স্টাইল করতে নিম্নলিখিত কোড চালানোর চেষ্টা করতে পারেন
<!DOCTYPE html> <html> <head> <style> p.dotted {border-bottom-style: dotted;} p.double {border-bottom-style: double;} p.dashed {border-bottom-style: dashed;} p.solid {border-bottom-style: solid;} p.inset {border-bottom-style: inset;} p.outset {border-bottom-style: outset;} </style> </head> <body> <p class = "dotted">Dotted bottom border.</p> <p class = "double">Double bottom border.</p> <p class = "dashed">Dashed bottom border.</p> <p class = "solid">Solid bottom border.</p> <p class = "inset">Inset bottom border.</p> <p class = "outset">Outset bottom border.</p> </body> </html>
আউটপুট