Skip to content

Instantly share code, notes, and snippets.

@bellons91
Last active January 19, 2019 17:28
Show Gist options
  • Save bellons91/6cb0d8fbbcb749ee7bbde2a489fba55c to your computer and use it in GitHub Desktop.
Save bellons91/6cb0d8fbbcb749ee7bbde2a489fba55c to your computer and use it in GitHub Desktop.
descrizione prova 1
<!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