Skip to content

Instantly share code, notes, and snippets.

@u1f992
Created February 27, 2025 04:41
Show Gist options
  • Save u1f992/06861b44d1578764b3b0896b07c42e0f to your computer and use it in GitHub Desktop.
Save u1f992/06861b44d1578764b3b0896b07c42e0f to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8" />
<title>CSS組版完全に理解した</title>
<style>
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:[email protected]&display=swap");
:root {
font-family: "Noto Sans JP";
font-size: 5mm;
}
@page {
size: 91mm 55mm;
margin: 10mm 15mm;
}
div {
margin: 0 2.5em 0 0;
padding: 0.2em 0 1em;
border: 0.2mm solid #000;
border-radius: 2.5mm;
}
p {
margin: 0 0 0 4em;
white-space: nowrap;
font-weight: bold;
}
</style>
</head>
<body>
<div>
<p>CSS組版<br />完全に理解した</p>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment