Briefly explain the procedure followed for setting the page size.?
What will be an ideal response?
?As printed media can vary in size and orientation, the followingsizeproperty allows web authors to define the dimensions of a printed page: size: widthheight; wherewidthandheightare the width and height of the page. Thus, to define a page that is 8.5 inches wide by 11 inches tall with a 1-inch margin, one should apply the following style rule:? @page { size: 8.5in 11in; margin: 11n; }? Once can replace thewidthandheightvalues with the keywordauto(to let browsers determine the page dimensions) orinherit(to inherit the page size from the parent element). If a page does not fit into the dimensions specified in the@pagerule, browsers will either rotate the page or rescale it to fit within the defined page size.
You might also like to view...
The original use of the term social network means a visual representation of the various types of ____ relationships between people.
A. curricular B. one-to-one C. lopsided D. many-to-one
The "something a person has" authentication mechanism takes advantage of something inherent in the user that is evaluated using biometrics.
Answer the following statement true (T) or false (F)
Method ________ returns an IEnumerable
a) Children b) Nodes c) Elements d) Descendants
Mention three C compilers and on which operating systems they are available.
What will be an ideal response?