Which property lets you expand or compress the font face?

A. font-size-adjust
B. ?font-stretch
C. text-expand
D. text-height


Answer: B

Computer Science & Information Technology

You might also like to view...

Given the following class declaration,

class Rational { public: Rational(); Rational(int numer, int denom); int getNumerator() const; int getDenominator() const; friend void display(ostream& out, const Rational& value); friend bool operator(const Rational& left, const Rational& right); private: int numerator; int denominator; }; what must we add to the class in order for the following code to compile? Rational myRational(2,3); if ( 3 < myRational) a. We need another < operator that expects an integer as the second parameter. b. We need another < operator that expects an integer as the first parameter. c. We need a constructor that expects a ration number d. We need a constructor that expects an integer e. A or D f. B or D

Computer Science & Information Technology

When you ________ the movie, it combines all of the elements that you have gathered in your Storyboard or Timeline, and creates a single movie file

Fill in the blank(s) with correct word

Computer Science & Information Technology

The ____ command on the Adjustments submenu produces a grayscale image but leaves the image in the same color mode, usually rendering a flat, uninspiring version.

a. Black and White b. Grayscale c. Desaturate d. Colorless

Computer Science & Information Technology

Which of the following audio formats is used to save podcasts?

A. HTML5 B. MP3 C. AIFF D. WAV

Computer Science & Information Technology