https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 26993d4c12a7ea4b3ff90c2fdfcba139b9e15cf6 authored by tbirdbld on 23 November 2011, 11:45:28 UTC
Added tag THUNDERBIRD_9_0b2_RELEASE for changeset d930274ef409. CLOSED TREE a=release
Tip revision: 26993d4
checkbox-label-dynamic-ref.html
<!DOCTYPE html>
<html>
<head>
<style type="text/css">

#c3, #c4 {
  display: none;
}

label[for="c1"], 
label[for="c3"] {
  background-color: yellow;
}

</style>

</head>

<body>

<div><input type="checkbox" name="test" id="c1" checked><label for="c1">check #c1</label></div>
<div><input type="checkbox" name="test" id="c2"><label for="c2">check #c2</label></div>
<div><input type="checkbox" name="test" id="c3" checked><label for="c3">check #c3</label></div>
<div><input type="checkbox" name="test" id="c4"><label for="c4">check #c4</label></div>

</body>
</html>
back to top