mirror of
https://github.com/samsonjs/samhuri.net.git
synced 2026-03-25 09:05:47 +00:00
35 lines
563 B
HTML
35 lines
563 B
HTML
<!doctype html>
|
|
<html>
|
|
|
|
<head>
|
|
<title>jank</title>
|
|
|
|
<style>
|
|
|
|
html { font-size: 100% }
|
|
|
|
@media (min-width: 40rem) {
|
|
html { font-size: 112% }
|
|
}
|
|
|
|
@media (min-width: 64rem) {
|
|
html { font-size: 120% }
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>rem-sized elements and fonts flicker when resizing around the marked widths</h1>
|
|
|
|
<div style="width: 64rem; background-color: #ada">
|
|
<p align="center">64rem</p>
|
|
|
|
<div style="width: 40rem; background-color: #faa">
|
|
<p align="center">40rem</p>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|