所属分类:web前端开发
要选择具有属性的元素,请使用 CSS [attribute] 选择器。
例如 alt 属性或 target 属性等。
示例
实时演示
<!DOCTYPE html> <html> <head> <style> img[alt] { border: 3px solid orange; } </style> </head> <body> <img src = "https://img.zzsucai.com/202309/07/bcfXI12278075716.jpg" height = "200" width = "200"> <img src = "https://img.zzsucai.com/202309/07/iHeUV838891075718.jpg" height = "200" width = "200" alt = "Tutorials Library"> </body> </html>