Skip to content

Instantly share code, notes, and snippets.

@Comamoca
Last active May 11, 2023 10:47
Show Gist options
  • Save Comamoca/65502ce5a95017596ae579569d19b9cc to your computer and use it in GitHub Desktop.
Save Comamoca/65502ce5a95017596ae579569d19b9cc to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>CSS完全に理解した</title>
</head>
<body>
<div class="box">
<p>
CSS<br>
完全に理解した
</pre>
</div>
<style>
.box {
padding: 0.5em 1em;
margin: 2em 0;
font-weight: bold;
border: solid 3px #000000;
border-radius: 9px;
width: 145px;
}
p {
white-space: nowrap;
position: relative;
left: 30px;
font-weight: 100;
font-size: 1.5rem;
}
</style>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment