Шаблон:Test3 — различия между версиями

Материал из Integra-S Wiki
Перейти к: навигация, поиск
Строка 1: Строка 1:
<html>
 
 
<head>
 
<head>
<title>Пример жесткой блочной верстки сайта в три колонки</title>
+
<title>Пример жесткой CSS верстки с помощью таблицы</title>
 
<style type="text/css">
 
<style type="text/css">
div#block {width:750px; margin:0 auto; background-color:#dddddd}
+
.header {width:100%; height:60px; background-color:#717dc9; padding:20px; text-align:center}
div.header {width:750px; height:100px; background-color:#717dc9}
+
.left_col {width:120px; height:460px; background-color:#dddddd; padding:15px; vertical-align:top}
div.left_col {width:148px; height:350px; float:left; border-right:2px dashed #717dc9; margin-bottom:-15px}
+
.center_col {width:500px; background-color:#ffffff; padding:15px; vertical-align:top}
div.center_col {width:450px; float:left}
+
.right_col {width:120px; background-color:#dddddd; padding:15px; vertical-align:top}
div.right_col {width:148px; height:350px; float:left; border-left:2px dashed #717dc9; margin-bottom:-15px}
+
.footer {width:100%; padding:10px 0 10px 20px; background-color:#717dc9; font-size:13px}
div.footer {width:750px; height:70px; background-color:#717dc9; clear:both}
 
 
</style>
 
</style>
 
</head>
 
</head>
 
<body>
 
<body>
<div id="block">
+
<table cellpadding="0" cellspacing="0" width="860" align="center">
<div class="header"><h1 align="center">Верстка сайта</h1></div>
+
<tr>
<div class="left_col"><p align="center">Меню</p></div>
+
<td colspan="3" class="header">Мой сайт</td>
<div class="center_col">
+
</tr>
<h2 align="center">CSS верстка сайта</h2>
+
<tr>
<h4 align="center">Жесткая верстка блоками</h4>
+
<td class="left_col">Меню</td>
</div>
+
<td class="center_col">Содержание</td>
<div class="right_col"><p align="center">Ссылки</p></div>
+
<td class="right_col">Ссылки</td>
<div class="footer"><p>© 2010</p></div>
+
</tr>
</div>
+
<tr>
 +
<td colspan="3" class="footer">© 2010</td>
 +
</tr>
 +
</table>
 
</body>
 
</body>
</html>
 

Версия 18:59, 26 октября 2017

<head> <title>Пример жесткой CSS верстки с помощью таблицы</title> <style type="text/css"> .header {width:100%; height:60px; background-color:#717dc9; padding:20px; text-align:center} .left_col {width:120px; height:460px; background-color:#dddddd; padding:15px; vertical-align:top} .center_col {width:500px; background-color:#ffffff; padding:15px; vertical-align:top} .right_col {width:120px; background-color:#dddddd; padding:15px; vertical-align:top} .footer {width:100%; padding:10px 0 10px 20px; background-color:#717dc9; font-size:13px} </style> </head> <body>

Мой сайт
Меню Содержание Ссылки

</body>