Skip to content

Instantly share code, notes, and snippets.

@yossan
Created October 13, 2020 14:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yossan/71c5c61e3027c2e435117f4a07aa1a38 to your computer and use it in GitHub Desktop.
Save yossan/71c5c61e3027c2e435117f4a07aa1a38 to your computer and use it in GitHub Desktop.
Center Aligning
<!DOCTYPE html>
<html>
<head>
<title>中央寄せ</title>
<style>
.container {
display: block;
text-align: center;
}
.content {
display: inline-block;
}
</style>
</head>
<body>
<div class="container">
<div class="content">
<h2> 果物リスト</h2>
<ul>
<li>りんご</li>
<li>ばなな</li>
<li>みかん</li>
<li>ぶどう</li>
</ul>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment