Note that there are some explanatory texts on larger screens.

plurals
  1. POFloated image overflows accordion div
    text
    copied!<p>I have an accordion that I have been developing and have an issue with a floated image. Everytime the image is taller than the text in the same div, the image overflows outside of the div on top of the next accordion h3 tag. I have a live example of this at <a href="http://vozpc.com/accordion.html" rel="nofollow">http://vozpc.com/accordion.html</a> I put all the code in that file so you can see. I will add it here as well.</p> <p>CSS</p> <pre><code>#accordion div { padding: 5px 10px; width: 95%; display: inline-block; } #accordion h3 { display: block; text-decoration: none; outline: none; cursor: pointer; padding: 8px 11px; font-family: Oswald, sans-serif; letter-spacing: 1px; font-weight: 700; width: 95%; margin: 5px; } #accordion div p { margin-top: 0; } .icon-expand,.icon-collapse { float: right; margin-top: 5px; } .blue h3 { background: #377ad0; color: #fff; } </code></pre> <p>HTML</p> <pre><code>&lt;div class="blue" id="accordion"&gt; &lt;h3&gt;Enter Title 1&lt;/h3&gt; &lt;div&gt; &lt;img src="http://placehold.it/150x200" style="margin-right: 10px; float: left;"&gt; &lt;p&gt;Bacon ipsum dolor sit amet jerky capicola shank ball tip venison. Prosciutto kielbasa chicken, pork loin shoulder fatback frankfurter tenderloin short loin andouille capicola filet mignon. Turducken boudin prosciutto pork, ball tip tri-tip pork belly pork loin. Frankfurter kielbasa ball tip short ribs pork belly, ham hock chicken meatball brisket beef flank jerky. Cow hamburger meatloaf doner short ribs turducken ham tenderloin ground round flank jerky jowl corned beef spare ribs. T-bone salami kielbasa boudin biltong short loin hamburger beef pancetta sirloin tenderloin shank ball tip.&lt;/p&gt; &lt;/div&gt; &lt;h3&gt;Enter Title 2&lt;/h3&gt; &lt;div&gt; &lt;p&gt;Bacon ipsum dolor sit amet jerky capicola shank ball tip venison. Prosciutto kielbasa chicken, pork loin shoulder fatback frankfurter tenderloin short loin andouille capicola filet mignon. Turducken boudin prosciutto pork, ball tip tri-tip pork belly pork loin. Frankfurter kielbasa ball tip short ribs pork belly, ham hock chicken meatball brisket beef flank jerky. Cow hamburger meatloaf doner short ribs turducken ham tenderloin ground round flank jerky jowl corned beef spare ribs. T-bone salami kielbasa boudin biltong short loin hamburger beef pancetta sirloin tenderloin shank ball tip.&lt;/p&gt; &lt;ul&gt; &lt;li&gt;List Item 1&lt;/li&gt; &lt;li&gt;List Item 2&lt;/li&gt; &lt;li&gt;List Item 3&lt;/li&gt; &lt;li&gt;List Item 4&lt;/li&gt; &lt;/ul&gt; &lt;/div&gt; &lt;h3&gt;Enter Title 3&lt;/h3&gt; &lt;div&gt; &lt;p&gt;Bacon ipsum dolor sit amet jerky capicola shank ball tip venison. Prosciutto kielbasa chicken, pork loin shoulder fatback frankfurter tenderloin short loin andouille capicola filet mignon. Turducken boudin prosciutto pork, ball tip tri-tip pork belly pork loin. Frankfurter kielbasa ball tip short ribs pork belly, ham hock chicken meatball brisket beef flank jerky. Cow hamburger meatloaf doner short ribs turducken ham tenderloin ground round flank jerky jowl corned beef spare ribs. T-bone salami kielbasa boudin biltong short loin hamburger beef pancetta sirloin tenderloin shank ball tip.&lt;/p&gt; &lt;/div&gt; &lt;/div&gt; </code></pre> <p>JAVASCRIPT</p> <pre><code>$(function() { $("#accordion").accordion({ heightStyle: "content", collapsible: true, active: false, autoHeight: true }); $("#accordion").accordion(); $("#accordion").accordion("option", "icons", { 'header': 'icon-expand', 'activeHeader': 'icon-collapse' }); }); </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload