Last active
January 19, 2019 17:28
-
-
Save bellons91/6cb0d8fbbcb749ee7bbde2a489fba55c to your computer and use it in GitHub Desktop.
descrizione prova 1
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> | |
<head> | |
<meta charset="utf-8"> | |
<title>Flexbox align 0 — starting code</title> | |
<style> | |
html { | |
font-family: sans-serif; | |
} | |
body { | |
width: 70%; | |
max-width: 960px; | |
margin: 20px auto; | |
} | |
button { | |
font-size: 18px; | |
line-height: 1.5; | |
width: 15%; | |
} | |
div { | |
height: 100px; | |
border: 1px solid black; | |
} | |
/* Add your flexbox CSS below here */ | |
div { | |
display: flex; | |
align-items: center; | |
justify-content: space-around; | |
} | |
</style> | |
</head> | |
<body> | |
<div> | |
<button>Smile</button> | |
<button>Laugh</button> | |
<button>Wink</button> | |
<button>Shrug</button> | |
<button>Blush</button> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment