Я пытаюсь расположить два элемента <div>
так, чтобы их левые стороны совпали, как верхняя панель навигации и боковая панель на этой фотографии:
ОбычноЯ бы использовал родителя <div>
, чтобы помочь с этим.Проблема в том, что я планирую использовать PHP include()
для заголовка и боковой панели, чтобы сохранить копирование и вставку по всему сайту.Это означает, что тег <div>
необходимо оставить открытым в конце include()
, чтобы оставить место для содержимого справа.Это кажется ужасной практикой, и я могу забыть добавить </div>
в конце страницы.
Есть ли способ выровнять блоки, не заключая их в родительский контейнер?
РЕДАКТИРОВАТЬ: Вот то, что у меня есть.
<!-- Common code. Designed to be include()'d into each page. -->
<div id = "Header">
<a href = "/"><img id = "Logo" src = "Foo.jpg"></a>
<!-- #Logo is centered in CSS. -->
<ul id = "TopNav">
<li><a href = "/">Home</a></li>
<li><a href = "Browse">Home</a></li>
</ul>
<!-- #TopNav is also centered in CSS. There are also
some fancy link effects, but those are irrelevant. -->
</div>
<div id = "Sidebar">
<!-- Contains stuff like advertisements and a
table of contents. -->
</div>
<!-- No CSS effects are currently applied to the sidebar, meaning it's on the
far left of the page. I'm trying to line it up with #TopNav, which is
closer to the center.
<!-- The content section to the right of the sidebar is not included
in this file. That's defined on a page-by-page basis. Whatever that
content is, it should fall to the right of the sidebar. It'd be nice
if the left side of the content never fell past the right side of the
sidebar, though not an absolute necessity. -->