| CSS
Selector Tag
This third style redefines a group of HTML tags
instead of just one. For instance you can redefine H1 only within
a table row.
You do this as follows
Select New Style from the button or drop down
menu in the CSS Panel
Pick Use CSS Selector, This Document Only and then type in the tags
in the Selector box
Redefine all the parameters and click OK.
Have a look in the code at HEAD of the document.
Here is the new H3 style just redefined for this table row only.
td h3 { font-family: "Kristen
ITC"; font-size: 36px; font-style: normal; font-weight: bold;
text-transform: capitalize; color: #009900}
This is the result
New Cell Heading
Using CSS Selector for Hyperlink
Rollovers
These CSS Selector styles redefine the anchor
tag<a> used in hyperlinks.It makes the link change colour
when user has cursor positioned over it
In CSS Panel select New Style and CSS Selector.
There are 4 link styles. Select a:hover to add
rollover to hyperlinks. Click Ok.
In Style Definition dialogue box pick a colour
and press Ok
The CSS selector style is now defined for the
document whenever you create hyperlinks.
Make a hyperlink and then test in out in the
browser.
Try out these rollover hyperlinks that will
navigate you away from this page. |