যে উপাদানগুলির বৈশিষ্ট্যের মান একটি নির্দিষ্ট মানের সাথে শেষ হয় যেমন ".htm" এখানে।
আপনি CSS [attribute$="value"] নির্বাচক,
প্রয়োগ করতে নিম্নলিখিত কোড চালানোর চেষ্টা করতে পারেনউদাহরণ
<!DOCTYPE html> <html> <head> <style> [href$ = htm] { border: 5px solid orange; border-radius: 5px; } </style> </head> <body> <a href = "https://tutorialspoint.com/java/index.htm">Java Tutorial</a> <a href = "https://www.tutorialspoint.com/java/java_tutorial.pdf">Java Tutorial PDF</a> </body> </html>