mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
17 lines
287 B
HTML
17 lines
287 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
|
|
#div:first-letter { color: green; }
|
|
|
|
</style>
|
|
</head>
|
|
|
|
<body onload="document.getElementById('div').appendChild(document.createTextNode(''));">
|
|
|
|
<div style="-moz-column-width: 0.5em; -moz-column-gap: 100px;" id="div">xx ! </div>
|
|
|
|
</body>
|
|
</html>
|