Skip to content

Instantly share code, notes, and snippets.

Created June 25, 2017 15:30
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 anonymous/85783be24c4d891afae22cb94cf98290 to your computer and use it in GitHub Desktop.
Save anonymous/85783be24c4d891afae22cb94cf98290 to your computer and use it in GitHub Desktop.
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
html,
body {
height: 100%;
padding: 0;
margin: 0;
}
html {
}
body {
background: yellow;
}
div {
width: 75%;
height: 100%;
}
#a {
float: left;
background: blue;
}
#b {
margin-left: 75%;
background: red;
}
</style>
</head>
<body>
<div id="a"></div>
<div id="b"></div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment