在为网上申请设立一个标题栏目的过程中,Im。 I m 有一些困难,难以调整和定位它应当采取什么方式:
The logout button you see there on the right should move up into the light grey area. So in other words, in the same lign as the logo. This is the html for that section:
<div>
<img src="Images/logo.png" id="imgLogo" alt="" />
<img src="Images/logout-idle.png"
alt=""
id="imgLogout"
onmouseover="this.src= Images/logout-hover.png "
onmouseout="this.src= Images/logout-idle.png "
onmousedown="this.src= Images/logout-down.png "
/>
</div>
The CSS for these elements:
#imgLogo{
margin: 0 auto;
display: block;
}
#imgLogout{
float: right;
margin-top: 4px;
margin-right: 10px;
}
What am I doing wrong? What can I do to get that darn logout button to move more to the top? Thanks in advance!