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.
テキスト コピーがコンテンツに追加されたときに拡張したいメイン ラッパー<div>(id ) がありますが、何らかの理由でメイン div が拡張されず、コンテンツ div に追加されたコンテンツはもちろん、その中にある他の要素に対応できません。 .#main<div><div>
<div>
#main
jsフィドル
誰かが私を助けることができますか?
ここでいくつかのことを試すことができます: 親 div を左にフロートします。これで何も起こらない場合はoverflow: hidden;、親 div でプロパティを使用します。clear: both;コンテナ内に子要素を追加します。
overflow: hidden;
clear: both;
それでもうまくいかない場合は、 を試してください#main{height:auto}。これと同じ属性を Content DIV に追加する必要がある場合があります。
#main{height:auto}