web desgin questions Please write in your own words and do n
web desgin questions. Please write in your own words and do not copy from website.
1. How many media query sizes can a web site\'s CSS file declare?
2. Where do media queries typical reside?
3. What property/value pair changes a list of items from vertical to horizontal orientation?
4. Which field attribute is displayed in the email message once it is sent?
5. Which form action uses the form page\'s self to run the script?
6. What is the purpose of position:absolute in a CSS file?
7. Which property sits between the margin and padding of a block element?
8. What mouse action opens the print dialog box?
9. What is a typical range of minimum widths for a media query for tablets?
10. What is a data table\'s purpose?
Solution
1. There is no limit.
2. In an external css file which is referenced in the html or directly in the html, before body tag using @media.
3. orientation:landscape
4. message
5. action = $_SERVER[\'PHP_SELF\'];
6. To place an element on a specific position on the web page. Absolute positioning can bbe used to override or violate the normal flow of content positioning on a web page.
7. Border
8. window.print()
9. 768px - 1024px
10. Data tables can be used to present large amounts of data in a clean, structures, scannable and easil;y readable way.
