blob: 71aa8925d6c9d68869bd5ec5a484acebf9ba5592 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<html>
<head>
<style>
div { background: red; height: 3em; }
div:empty { background: lime; }
</style>
</head>
<body>
<div style="display: none"></div>
<script>
var div = document.getElementsByTagName("div")[0];
div.appendChild(document.createTextNode("aa"));
div.style.display = "";
</script>
</body>
</html>
|