Which of the followings is the correct CSS syntax that specifies the text color of all elements that has a class attribute equal to navmenu?

a. navmenu {color:#000000};
b. .navmenu {color:#000000};
c. #navmenu {color:#000000};
d. navmenu {color:#000000};

D

Computer Science & Information Technology

You might also like to view...

Assuming that arr is an array identifier, the statement sum += *arr;

A) is illegal in C++. B) will always result in a compiler error. C) adds the value stored in arr[0] to sum. D) adds the address of the pointer arr to sum. E) None of the above

Computer Science & Information Technology

Draw a flowchart for the program fragments (no need to show start and stop).

OUTPUT value

Computer Science & Information Technology