зеркало из https://github.com/mozilla/gecko-dev.git
17 строки
435 B
HTML
17 строки
435 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
div { border: 5px solid transparent; }
|
|
div::first-line { }
|
|
div::first-letter { border: inherit; border-color: yellow; }
|
|
</style>
|
|
<div>
|
|
Some text.
|
|
</div>
|
|
<script>
|
|
onload = function() {
|
|
var div = document.querySelector("div");
|
|
window.width = div.offsetWidth; // Make sure we flush layout.
|
|
div.appendChild(document.createTextNode('Does the first letter still have a border?'));
|
|
}
|
|
</script>
|