Tairon Posted March 8, 2008 Report Share Posted March 8, 2008 Link to comment Share on other sites More sharing options...
0 Dimitry Wolotko Posted March 8, 2008 Report Share Posted March 8, 2008 Стили бы посмотреть.И вместо align="center" используйте style="text-align:center;" Link to comment Share on other sites More sharing options...
0 SibBear Posted March 8, 2008 Report Share Posted March 8, 2008 напиши полный текст свойства div'ов, скорее всего они позиционируются относительно друг друга а не главного div'a Link to comment Share on other sites More sharing options...
0 Tairon Posted March 8, 2008 Author Report Share Posted March 8, 2008 #content { height: 100%; width: 100%; }#ads { height: 60px; width: 468px; }#lcol { height: 600px; width: 150px; float: left; }#cont { height: 600px; width: 650px; float: left; }#rcol { height: 600px; width: 150px; float: left; }#bottom { clear: both; height: 20px; width: 100%; }Я что-то не так делаю? Link to comment Share on other sites More sharing options...
0 SibBear Posted March 8, 2008 Report Share Posted March 8, 2008 как то все несуразно...так для разнообразия статья: Я ничего не понял, но на примерах более менее начинаю разбираться http://www.codenet.ru/webmast/css2/visuren.php пункт 9и код примера позиционирования дивов:<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN"><HTML> <HEAD> <TITLE>Создание кадра в CSS2</TITLE> <STYLE type="text/css"> BODY { height: 8.5in } /* будет использовано ниже для определения */ /* процентных соотношений, задающих значение */ /* высоты элемента */ #header { position: fixed; width: 100%; height: 15%; top: 0; right: 0; bottom: auto; left: 0; } #sidebar { position: fixed; width: 10em; height: auto; top: 15%; right: auto; bottom: 100px; left: 0; } #main { position: fixed; width: auto; height: auto; top: 15%; right: 0; bottom: 100px; left: 10em; } #footer { position: fixed; width: 100%; height: 100px; top: auto; right: 0; bottom: 0; left: 0; } </STYLE> </HEAD> <BODY> <DIV id="header"> ... </DIV> <DIV id="sidebar"> ... </DIV> <DIV id="main"> ... </DIV> <DIV id="footer"> ... </DIV> </BODY></HTML> Link to comment Share on other sites More sharing options...
0 Tairon Posted March 9, 2008 Author Report Share Posted March 9, 2008 Это случайно не из за того что я использовал float? Link to comment Share on other sites More sharing options...
0 Azadi Posted March 9, 2008 Report Share Posted March 9, 2008 Да, это из-за float, которые вы забыли очистить. Решений несколько, посмотрите здесь.А если говорить о макете, то он сделан не самым лучшим образом. Link to comment Share on other sites More sharing options...
0 Tairon Posted March 9, 2008 Author Report Share Posted March 9, 2008 Какой вариант вы могли бы предложить? Я решил переделать, сделал макет из таблиц и уже после этого добавил div'ы. Link to comment Share on other sites More sharing options...
0 Azadi Posted March 9, 2008 Report Share Posted March 9, 2008 http://flack.ru - почитайте про семантическую верстку, обратите внимание на статьюСемантическая верстка ? советы и решения. Часть IV. Забудьте про таблицы, они здесь и не нужны.Я бы предложил вам вариант верстки, похожий вот на это. Кое-что упростить, убрать лишний код - и получится именно то, что вам нужно. Ну по крайней мере мне так кажется Link to comment Share on other sites More sharing options...
0 Tairon Posted March 9, 2008 Author Report Share Posted March 9, 2008 Благодарю за помощь ] Link to comment Share on other sites More sharing options...
Question
Tairon
Link to comment
Share on other sites
9 answers to this question
Recommended Posts