Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> CSS

เลือกองค์ประกอบที่มีแอตทริบิวต์ที่ระบุโดยเริ่มต้นด้วยค่าที่ระบุด้วย CSS


ใช้ [แอตทริบิวต์| =”value”] ตัวเลือกเพื่อเลือกองค์ประกอบที่มีแอตทริบิวต์ที่ระบุเริ่มต้นด้วยค่าที่ระบุ

คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อใช้งาน CSS [attribute| =”ค่า”] ตัวเลือก

ตัวอย่าง

<!DOCTYPE html>
<html>
   <head>
      <style>
         [alt |= Tutor] {
            border: 5px solid orange;
            border-radius: 5px;
         }
      </style>
   </head>
   <body>
      <img src = "https://www.tutorialspoint.com/videotutorials/images/tutor_connect_home.jpg" height = "200" width="200" alt = "Tutor-Connect">
      <img src = "https://www.tutorialspoint.com/videotutorials/images/tutorial_library_home.jpg" height = "200" width="200" alt = "Tutorials-Library">
   </body>
</html>