ラッパーdiv内の画像のすぐ隣にテキストを配置しようとしていますが、これまでのところすべての試みが失敗し、画像を使用して目的を達成することになりました。混乱を避けるために、失敗した試行をコードに投稿しませんが、これまでに得たものは次のとおりです。
HTML
<html>
<head>
<link rel="stylesheet" href="/css/header.css" />
</head>
<meta http-equiv="Content-Type" content="text/html; charset=big5" /></head>
<body style="margin:0; padding:0;">
<div id="wrapper">
<div class="logo"><img src="/images/logo-top.png"></div>
<div class="linked"><a href="http://www.linkedin.com/in/me" target="_blank"><img border="0" src="/images/connect-linkedin.png" alt="LinkedIn Profile" width="217" height="23" /></a></div>
</div>
<div id="header-bg">
</div>
</body>
</html>
CSS
#wrapper {
postion: fixed;
width: 940px;
height: 66px;
top: 0;
left: 0;
right: 0;
margin-left: auto;
margin-right: auto;
z-index: 1;
}
.logo {
height: 66px;
width: 171px;
float: left;
}
.linked {
height: 23px;
width: 217px;
margin-top: 12px;
margin-right: 0;
left: 0;
float: right;
}
#header-bg {
position: absolute;
top: 0;
left: 0;
right: 0;
width: 100%;
height: 50px;
background-image: url("/images/header-bg.png");
background-repeat: repeat-x;
z-index: -1;
}
これを生成します:http: //oi46.tinypic.com/2vmd9v8.jpg
^それは私がレイアウトに関してやろうとしていることですが、最終的には「Connect with me on」と、LinkedInのロゴを1つの画像をまとめるのではなく、テキストとロゴ画像に分けたいと思います。
あなたの助けは大歓迎です。