レイアウトを次のように設定したい
このようなものを設定する必要があると私が思ったこと
main divを意味し、main divの上に、他のdivがあります。私はこのようなものを使用しました
<div id="headerImage" >
<div id="help_About">
<a href="#">Help</a>
<a href="#">About</a>
</div>
<div id="myLogout">
<input type="text" value="Basit" />
<a href="#">Logout</a>
</div>
<div id="myImage">
<img width="20" height="20" src="resources/images/tools_icon.png" />
</div>
<img src="resources/images/2b.jpg"/>
</div>
#headerImage{
border-style :solid;
border-width: thin;
width: 100%;
height: 20%;
background: url(${imgUrl}/2b.jpg) no-repeat top left;
padding: 0px;
border-top: 0px;
border-bottom: 5px #eeeeee solid;
z-index: 1;
}
#headerImage #help_About{
margin-left: 10%
margin-top: 2%;
display: inline-block;
border-style :solid;
border-width: thin;
padding: 2px;
border-top: 2px;
z-index: 2;
}
#headerImage #myLogout{
margin-left: 30%
margin-top: 4%;
display: inline-block;
border-style :solid;
border-width: thin;
padding: 2px;
border-top: 2px;
z-index: 2;
}
#headerImage #myImage{
margin-right: 10%
margin-top: 4%;
display: inline-block;
border-style :solid;
border-width: thin;
padding: 2px;
border-top: 2px;
z-index: 2;
}
境界線のスタイルと幅と高さを物理的な外観に指定しました。しかし、私はこのようなものを手に入れています
私が間違っていることは何ですか?divのレイアウトを設定するにはどうすればよいですか?
ありがとう