Menu
×
×
Correct!
Exercise:Set a border with the color "red", around elements with a "title" attribute containing the word "red". Hint: Use attribute selector [attribute~=value]. |
Edit This Code:
x
<html> <head> <style> </style> </head> <body> <img src="klematis_small.jpg" title="two red flowers" width="107" height="90"> <img src="klematis2_small.jpg" title="purple flower" width="107" height="80"> <img src="klematis3_small.jpg" title="red flower" width="116" height="90"> <img src="klematis4_small.jpg" title="two white flowers" width="120" height="90"> </body> <!-- Mirrored from www.w3schools.com/css/exercise.asp?filename=exercise_attribute_selectors3 by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 05 Jun 2019 13:17:15 GMT --> </html> Result:
|
Correct Code:
xxxxxxxxxx Result:
|