Petit quiz CSS
Étant donné ces instructions CSS,
z[x] > a[i] {color: blue;}
z z[x] a {text-decoration: underline;}
z > z a , z z z + a { color: red ;}
quelle sera la couleur du texte dans ce fichier XML?
<?xml version="1.0" encoding="ISO-8859-1" ?>
<?xml-stylesheet type="text/css"
href="test.css"?>
<z><z x="x">
<z />
<a i="x">mon texte</a>
</z>
</z>