What is a term used in typography that is defined in terms of the point size of a particular font?

a. Toast
b. View
c. Em
d. Px


c. Em
Em is a term used in typography that is defined in terms of the point size of a particular font. For example, the measure of an em in a 12-point font is 12 points.

Computer Science & Information Technology

You might also like to view...

For the two code segments below:

Segment A int q = 5; switch(q) { case 1: System.out.println(1); case 2: System.out.println(2); case 3: System.out.println(3); case 4: System.out.println(4); case 5: System.out.println(5); default: System.out.println("default"); } Segment B q = 4; switch(q) { case 1: System.out.println(1); case 2: System.out.println(2); case 3: System.out.println(3); case 4: System.out.println(4); case 5: System.out.println(5); default: System.out.println("default"); } Which of the following statements is true? a. The output for Segment A is: default b. The output for Segment B is: 4 c. The output for Segment B is: 45default d. The output for Segment A is: 5 default

Computer Science & Information Technology

The ____ style was originally introduced as a browser extension under Mozilla and WebKit.

A. drop-shadow B. text-shadow C. box-shadow D. shadow

Computer Science & Information Technology

The operator performs division.

a) / b) + c) \ d) ^

Computer Science & Information Technology

The ____________________ area is between the element content and the border.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology