わかりましたので、以下の CSS を使用していますが、#profile_side が #wrap_p から脱落し続けていますか? 私は何を間違っていますか?ググってみたけど…
#wrap_p{
border-style: solid;
}
#profile_side{
width: 20%;
float: right;
padding: 10px;
border-style:dashed;
border-color: gray;
}
#profile_main{
width: 70%;
padding:10px;
border-style:dashed;
border-color: gray;
}
ここにhtmlがあります:
<div id="wrap_p">
<div id="profile_side">
<img src="/img.png" width="100%"/>
<big>username</big>
<p>user information</p>
</div>
<div id="profile_main">
main user stuff
</div>
</div>