Reference no: EM133985016
Questions
1. What is the main benefit of using an external style rather than embedded style sheets?
2. How to do the CSS rule that changes the appearance of all headings at level one (h1) in your page to the following:
a) The heading uses an Arial font face.
b) The heading should be blue.
c) The heading must have a font size of 18 pixels.
d) The heading has a blue, thin border at the top and left side.
For the last requirement, check out VS's IntelliSense list in a CSS file to discover another shorthand version for the border property.
3. Which of the two following rules is easier to reuse across pages in your website? Can you explain why?
#MainContent
{
border: 1px solid Blue;
}
.BoxWithBorders
{
border: 1px solid Blue;
}
4. VS enables you to attach an external style sheet to a page in a number of different ways. Can you name two different ways to do ?
5. Identify three ways for adding and using CSS in an ASP.Net website.
6. How does Intellisense help users who are using Visual Studio when compared to other Integrated Development Environments?