mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
16 lines
316 B
HTML
16 lines
316 B
HTML
<html>
|
|
<head>
|
|
<style>
|
|
html::first-letter { float: right; }
|
|
html::before { content:"before text"; float:right; }
|
|
span::before { content:"before text"; float:right; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<span>
|
|
<div></div>
|
|
</span>
|
|
<button onclick="document.body.style.width='100px'">Click</button>
|
|
</body>
|
|
</html>
|