blob: 34ec338d161b13da94c3ea2bc6320c5bdc920a67 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<!DOCTYPE html>
<script>
onload = function() {
var height = document.body.offsetHeight; // Flush layout
document.querySelector("legend").style.color = "green";
}
</script>
<fieldset>
<legend style="display: list-item; color: red">Bullet should be green</legend>
</fieldset>
|