我的主页上有一个标志,我在它的右侧有一个大图像,我想做的是图像应该出现在标志的后面。
如需更多信息,请查看屏幕截图:
大图是其中包含许多不同图像的图像,徽标是红色图像。
HTML 代码:
<div id="header">
<img src="http://livedemo00.template-help.com/wordpress_43791/wp-content/themes/theme2033/images/logo.png" width="170" height="240" alt="LOGO" id="logo" />
<div id="slider">
<img src="http://livedemo00.template-help.com/wordpress_43791/wp-content/uploads/2011/07/testi1.jpg" width="800" height="328" alt="Welcome to Our Site!" />
</div>
</div>
CSS 代码:
html, body {
background-color: rgb(48, 48, 48);
padding:0;
margin:0;
}
/******HEADER******/
#header {
background-color: rgb(64, 64, 64);
height: 54px;
}
/******LOGO******/
#logo {
float:left;
margin-left: 47px;
}
/******NAV MENU******/
#nav {
list-style: none;
margin-top: 0px;
}
#nav li {
display:inline;
}
这是jsFiddle