33 lines
963 B
HTML
33 lines
963 B
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
|
|
<head>
|
|
<title>CSS-Selektoren</title>
|
|
<meta charset="utf-8" />
|
|
<link rel="stylesheet" type="text/css" href="style.css" />
|
|
</head>
|
|
|
|
<body>
|
|
<h1><span class="tm">Selectors</span> Level 3</h1>
|
|
<section class="box" id="abstract">
|
|
<h2>Abstract</h2>
|
|
<p>
|
|
<span class="tm">Selectors</span> are patterns
|
|
that match against elements in a tree, and
|
|
as such form one of several technologies that
|
|
can be used to select nodes in an XML document.
|
|
</p>
|
|
</section>
|
|
<section class="box">
|
|
<h2><span class="tm">Selectors</span></h2>
|
|
<p>
|
|
A <span class="tm">Selector</span> represents
|
|
a structure. This structure can be used as a
|
|
condition (e.g. in a CSS rule) that determines
|
|
which elements a selector matches in the
|
|
document tree.
|
|
</p>
|
|
</section>
|
|
</body>
|
|
|
|
</html> |