mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-24 13:23:08 +09:00
11 lines
239 B
HTML
11 lines
239 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
.x { position: absolute; color: red; }
|
|
.y { color: green; }
|
|
</style>
|
|
<div class=x>hello</div>
|
|
<script>
|
|
document.body.offsetHeight;
|
|
document.querySelector(".x").className = "y";
|
|
document.body.offsetHeight;
|
|
</script>
|