Computer Videos Category
You are here: Home > Videos > CSS > CSS Dedicated server
Video title: How to make a CSS dedicated server with a BATCH file |
|
|
|
|
Descendant selectors are used to select elements that are descendants of another element in the document tree. For example, you may wish to target a specific <em> element on the page, but not all <em> elements. A sample document could contain the following code: <body><h1>Heading <em>here</em> </h1> <p>Lorem ipsum dolor <em>sit</em> amet.</p> </body> If you use a type selector like the example below, you will select all <em> elements on the page: em {color: blue; }However, if you use a descendant selector, you can refine the <em> elements that you select. The rule below will only select <em> elements that are descendants of <p> elements. If this rule is applied, the <em> element within the <h1> will not be colored blue. . |
|
.png)

