ロゴとタイトルのdivの配置に問題があります。ロゴは正常に機能しますが、タイトルdivが正確に希望する場所に配置されません。その位置は、ヘッダーコンテンツdivではなくロゴに関連するようになります。
前もって感謝します
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<style>
*
{
margin:0px;
padding:0px;
}
#header_wrap
{
float: left;
width: 100%;
height: 150px;
background: #dddddd;
}
#header_content
{
width: 850px;
height: 150px;
margin: 0 auto 0;
background: #cccccc;
}
#logo
{
width: 50px;
height: 50px;
background: #ffffff;
position: relative;
left: 10px;
top: 50px;
}
#title
{
width: 100px;
height: 50px;
background: #ffffff;
position: relative;
left: 100px;
top: 10px;
}
</style>
</head>
<body>
<div id="header_wrap">
<div id="header_content">
<div id="logo">LOGO</div>
<div id="title">TITLE</div>
</div>
</div>
</body>
</html>