nerdexam
Microsoft

98-375 · Question #99

You create a web page that displays text images. You need to use CSS to rotate some text counterclockwise when the page renders in Internet Explorer. Which markup segment will accomplish this?

The correct answer is D. -ms-transform: rotate(30deg). Incorrect Answers: A: -30deg rotates the text clockwise. C: -o-transform is used for Opera. https://css-tricks.com/snippets/css/text-rotation/

Understanding CSS3

Question

You create a web page that displays text images. You need to use CSS to rotate some text counterclockwise when the page renders in Internet Explorer. Which markup segment will accomplish this?

Options

  • A-ms-transform: rotate(-30deg);
  • Btransform: rotate(30deg);
  • C-o-transform: rotate(-30deg);
  • D-ms-transform: rotate(30deg);

How the community answered

(36 responses)
  • A
    14% (5)
  • B
    3% (1)
  • C
    8% (3)
  • D
    75% (27)

Explanation

Incorrect Answers: A: -30deg rotates the text clockwise. C: -o-transform is used for Opera. https://css-tricks.com/snippets/css/text-rotation/

Topics

#CSS transforms#vendor prefix#rotate#Internet Explorer

Community Discussion

No community discussion yet for this question.

Full 98-375 Practice