InterviewSolution
Saved Bookmarks
| 1. |
Which of the following units is recommended forspecifying font sizes?(a) dp (b) pt(c) sp (d) px |
|
Answer» Answer: units in CSS - EM, px, pt, cm, in… The em is simply the font size. In an element with a 2in font, 1em thus MEANS 2in. EXPRESSING sizes, such as margins and paddings, in em means they are related to the font size, and if the USER has a BIG font (e.g., on a big screen) or a small font (e.g., on a handheld device), the sizes will be in proportion. |
|