Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
最初のページの幅%20と2番目のページの幅%80の2つのdivを並べて配置する必要があります。divを指定する必要がある位置がわかりません。相対、固定、絶対、継承?
どうすればいいですか?
あなたはこのように書くことができます:
.firstdiv{ width:20%; float:left; } .secdiv{ overflow:hidden; }
このフィドルを確認してください
使用するdivに位置を指定せずfloat:left;、通常どおり幅を80%(または79%)と20%に設定します
float:left;
div_first { float:left; width:79%; } div_second { float:left; width:20%; }