Write a CSS rule that makes all text 1.5 times larger than the base font of the system and colors it red.

What will be an ideal response?


```
body { font-size: 1.5em;
color: red; }
```

Computer Science & Information Technology

You might also like to view...

A copy constructor must receive its argument by reference because:

a. Otherwise the constructor will only make a copy of a pointer to an object. b. Otherwise infinite recursion occurs. c. The copy of the argument passed by value has function scope. d. The pointer needs to know the address of the original data, not a temporary copy of it.

Computer Science & Information Technology

A computer-based information system (CBIS) is a single set of hardware, databases, networks, people, and procedures configured to collect, manipulate, store, and process data into information, but the CBIS does not include software. 

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

What permission must be granted for a user to run procedures within a database?

A. Execute B. Read C. List D. Server-level

Computer Science & Information Technology

Create a new document with the following text: “*****”. Then find “**” and replace with “*”. How many times did it find and replace? Explain in detail how the process worked.

What will be an ideal response?

Computer Science & Information Technology