无论出于何种原因,此图像使标记的其余部分无法在其容器内对齐,尽管它被设置为显示内联块:
对你们来说,应该是一些简单的事情。对我来说,我已经花了几天时间试图解决这个问题。
顺便说一句,我不想使用浮动。我不完全知道如何控制他们的怪癖,也没有时间去学习它。如果您能不使用它们,我将不胜感激。但是,如果你带我去一个涵盖他们所有不幸等的课程,我可以参加关于花车的速成课程。
现在,我需要坚持使用非浮动 CSS。
PS。边框仅用于“调试”,实际上没有必要
HTML:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
<link rel="stylesheet" type="text/css" href="css_test2.css" />
</head>
<body>
<div id="header">
<img src="http://img710.imageshack.us/img710/938/imgbz.png" id="logo">
<a href="#" id="logo_txt">Title goes here</a>
<span id="social_media">Social media links</span>
</div>
</body>
</html>
CSS:
#header {
border: 1px solid red;
width: 800px;
height: 123px;
margin: 0px auto;
padding: 0px;
background-color: rgb(181, 230, 29);
}
#logo {
border: 1px solid red;
display: inline-block;
width: 172px;
height: 123px;
}
#logo_txt {
border: 1px solid black;
display: inline-block;
width: 100px;
height: 123px;
}
#social_media {
border: 1px solid black;
display: inline-block;
width: 300px;
height: 123px;
text-align: right;
}