My page calls a main stylesheet. For part of the page, I'd like to use a different ss. Is this possible?
Yes, just list them like this: <link rel="stylesheet" type="text/css" href="stylesheet1.css" /> <link rel="stylesheet" type="text/css" href="stylesheet2.css" /> <link rel="stylesheet" type="text/css" href="stylesheet3.css" /> Code (markup): Check there are no selectors with the same name because the last one loaded will be used.
No reason to have more than a single stylesheet per website, let alone page (exceptions, print, handheld, other media-selected stylesheets).
correct just use the same stylesheet and maybe put some comments in the style sheet so you know what the rules are doing i.e /** All Rules below this line are for the second part of the index page *///