Chapter 3 - Applying Styles (page 93)
Question 1: there is a slight difference in selectors; does it matter?
In "Try It Out" for page 93, my View-> Apply Styles came up with the following:
Current Page:
#form1
.auto-style1
.auto-style2
.Introduction
Styles.css:
#PageWrapper
This list differs somewhat from that in page 93:
Current Page:
.auto-style1
.Introduction
Styles.css:
#PageWrapper
Contexted Selector:
Styles.css:
*
In the Tag Selector, my second paragraph <p> has <span.auto-style2> behind.
Question 2:
Step 3 - "Click the Introduction class in the CSS Styles list". Are you referring to ".Introduction"?
After I click .Introduction, the following codes are in the source view:
<p class="Introduction">Feel free to have a <a href="Default.aspx">look around</a>; there are lots of interesting <span class="auto-style2">reviews and concert pictures</span> to be found here.</p>
This again is somewhat different from the text book. Did I make some wrong codes?
|