Type the name of a CSS attribute, property, or technique to search for it.
<link rel="stylesheet" type="text/css" href="style.css" />
@import url("style2.css");
attribute-name: top-value right-value bottom-value left-value;
Replace "x-value" with your actual values (such as "10px").
div p * [href] {
This matches any tag that has the "href" attribute and is
inside a <p> tag which is itself inside a
<div> tag.
}