зеркало из https://github.com/mozilla/gecko-dev.git
13 строки
283 B
HTML
13 строки
283 B
HTML
|
<!DOCTYPE html>
|
||
|
<script>
|
||
|
onload = function() {
|
||
|
var height = document.body.offsetHeight; // Flush layout
|
||
|
document.querySelector("li").style.color = "green";
|
||
|
}
|
||
|
</script>
|
||
|
<ul>
|
||
|
<li style="column-count: 2; width: 50px; color: red">
|
||
|
Bullet should be green.
|
||
|
</li>
|
||
|
</ul>
|