Created
June 3, 2023 03:05
-
-
Save aodag/9dd7d9a4edd092cafd4c4e75a3023aaa to your computer and use it in GitHub Desktop.
css遊び
This file contains 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> | |
<style> | |
body { | |
width: 100%; | |
} | |
.btn-container { | |
width: 60%; | |
margin-left: auto; | |
margin-right: auto; | |
} | |
.btn-container button { | |
display: block; | |
padding: 50px; | |
width: 100%; | |
margin-top: 50px | |
} | |
.btn-on { | |
background-color: red; | |
} | |
.btn-on:hover { | |
background-color: pink; | |
} | |
.btn-off { | |
background-color: green; | |
} | |
.btn-off:hover { | |
background-color: aquamarine; | |
} | |
</style> | |
<body> | |
<div class="btn-container"> | |
<button class="btn-on">ON</button> | |
<button class="btn-off"> OFF</button> | |
<button>OFF</button> | |
<button>OFF</button> | |
</div> | |
</body> | |
</html> |
Author
aodag
commented
Jun 3, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment