Computer Science, asked by ssehlg, 10 months ago

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 tutorialaicsip
2

Answer:

Read the explanation

Explanation:

The errors are as following:

  1. The border property is used inplace of bordercolor.
  2. 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