Which CSS property can be used to configure italic text?

a. font-italic
b. font-style
c. font-weight
d. font-type


b. font-style

Computer Science & Information Technology

You might also like to view...

A(n) __________ is an electronic signal that results in the forced transfer of control to a handler routine.

a. task b. exception c. interrupt d. kernel call

Computer Science & Information Technology

The _____ usually begins with a formal request to the IT department, called a systems request, which describes problems or desired changes in an information system or a business process.?

A. ?systems design phase B. ?systems planning phase C. ?systems support and security phase D. ?systems analysis phase

Computer Science & Information Technology

Which of the following relative pathnames is interpreted as “the index.htm file is in the folder one level up in the folder tree from the current file”?

a. ./index.htm c. /index.htm b. ../index.htm d. __/index.htm

Computer Science & Information Technology

int [ ] anArray = new int [10];int [ ] anotherArray = {6, 7, 4, 5, 6, 2, 3, 5, 9, 1}; How could all values of anotherArray be totaled?

A. foreach(int val in anotherArray)    total += val; B. for (int i = 0; i < anotherArray.Length; i++)      total += anotherArray; C. Array.Sum(anotherArray) D. all of the above

Computer Science & Information Technology