Skip to content

Instantly share code, notes, and snippets.

@stden
Created January 16, 2013 13:58
Show Gist options
  • Save stden/4547296 to your computer and use it in GitHub Desktop.
Save stden/4547296 to your computer and use it in GitHub Desktop.
Пример вёрстки 10% - 85% - 5%
<!DOCTYPE html>
<html>
<head>
<title></title>
<style type="text/css">
div {
border: 1px #000000 solid; /* Для всех div-ов делаем границу */
}
</style>
</head>
<body>
<div style="height: 600px; width: 100%;">
<div style="height: 10%">
div #1
</div>
<div style="height: 85%">
div #2
</div>
<div style="height: 5%">
div #3
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment