please answer this question. (Q) Identify the error(s) in the following code: 5 image {bordercolor: 6px solid pink; width: 220px; length: 200px} h2{transform: lowercase}
Answers
Answered by
2
Answer:
Read the explanation
Explanation:
The errors are as following:
- The border property is used inplace of bordercolor.
- image should be clarified as a class or id selector or img should be written.
The correct code is:
img {border:6px solid pink; width: 220px; height: 200px}
Thank you
Similar questions