Skip to content

Instantly share code, notes, and snippets.

@jimmyandrade
Forked from anonymous/gist:7686194
Created November 28, 2013 02:00
Show Gist options
  • Save jimmyandrade/7686205 to your computer and use it in GitHub Desktop.
Save jimmyandrade/7686205 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<title>Título da página</title>
<style type="text/css">
<!--
.colunas form {
display: inline;
float: left;
position: relative;
margin-left: 10px;
margin-top: 10px;
}
.colunas:after {
clear: both;
content: "";
float: none;
}
.duas.colunas form {
width: 50%;
}
-->
</style>
</head>
<body>
<header>Cabeçalho da página</header>
<div id="wrapper" class="duas colunas">
<form>Formulário 1</form>
<form>Formulário 2</form>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment