Those are might assumptions, are these correct?
- Layout using CSS is preferred over using tables.
- CSS ishould be extracted in a separate file, rather than in-lined.
- CSS are imported (linked) from that is located in the site.master, therefore all .css are imported for (and apply to) all .aspx pages.
Given that, I have a project with one master page, and two .aspx pages. Each of those pages has a table with id "records".
Question: Can I import a .css file for each individual .aspx page?
Is there a better way to scope html elements within single page?