Created
October 13, 2020 14:59
-
-
Save yossan/71c5c61e3027c2e435117f4a07aa1a38 to your computer and use it in GitHub Desktop.
Center Aligning
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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