Note that there are some explanatory texts on larger screens.

plurals
  1. POContent devide in 3parts IE error
    primarykey
    data
    text
    <p>I have a content with Title, image and description. I have 3 differents contents, which i have to put side by side. What would be better do achive this ? I did with <code>&lt;ul&gt;</code>. But the image wasnts below title, and description below image, so i just but after <code>&lt;li&gt;&lt;/li&gt;</code> a break, and it worked. But in IE it doesnt.</p> <p>Here is what i got - > <a href="http://jsfiddle.net/5xfR9/12/" rel="nofollow">http://jsfiddle.net/5xfR9/12/</a></p> <pre><code> &lt;div id="content"&gt; &lt;ul&gt; &lt;li&gt; &lt;h3&gt;Custom clearance&lt;/h3&gt;&lt;br/&gt; &lt;img src="..." style="width:360px; height: 160px;" alt="Custom clearance" /&gt;&lt;br/&gt; &lt;p style="width:360px;"&gt;...&lt;br /&gt;&lt;a href="#" style="float:right; padding-top:10px;"&gt;Learn more &lt;img src="images/arrow.png" alt="learn more" style="width:6px; height:9px; border: 0px;"/&gt;&lt;/a&gt;&lt;br/&gt; &lt;/p&gt; &lt;/li&gt; &lt;li&gt; &lt;h3&gt;Cargo Inspections&lt;/h3&gt;&lt;br/&gt; &lt;img src="..." style="width:360px; height: 160px;" alt="Custom clearance" /&gt;&lt;br/&gt; &lt;p style="width:360px; padding"&gt;...&lt;br /&gt;&lt;a href="#" style="float:right; padding-top:10px;"&gt;Learn more &lt;img src="images/arrow.png" alt="learn more" style="width:6px; height:9px; border: 0px;"/&gt;&lt;/a&gt; &lt;/p&gt;&lt;br/&gt; &lt;/li&gt; &lt;li&gt; &lt;h3&gt;Our Location&lt;/h3&gt;&lt;br/&gt; &lt;img src="..." style="width:360px; height: 160px;" alt="Custom clearance" /&gt;&lt;br/&gt; &lt;p style="width:360px;"&gt;....&lt;br /&gt;&lt;a href="#" style="float:right; padding-top:10px;"&gt;Learn more &lt;img src="images/arrow.png" alt="learn more" style="width:6px; height:9px; border: 0px;"/&gt;&lt;/a&gt; &lt;/p&gt;&lt;br/&gt; &lt;/li&gt; &lt;/ul&gt; &lt;/div&gt; </code></pre> <p>using this CSS</p> <pre><code>#content { width: 100%; min-height: 450px; display: block; padding-bottom:40px; } #content ul li { display: inline; list-style: none; float: left; min-width:32%; } #content ul li &gt; h3 { text-decoration: none; display:block; float:left; font-size: 24px; margin: 0 0 0 20px; font-family: gothamlight; padding: 10px 20px 10px 20px; } #content ul li &gt; img { display: block; float:left; margin: 0 0 0 10px; padding: 0px 25px 0px 25px; } #content ul li &gt; p { text-decoration: none; line-height: 1.3; display:block; color: #404041; float:left; font-size: 14px; margin: 0 0 0 20px; padding: 5px 20px 5px 20px; display: block; } </code></pre> <p>I guess I did it wrong, I put <code>&lt;br /&gt;</code> after a <code>&lt;li&gt;&lt;/li&gt;</code>, so that content would be vertical.</p> <p>But of course IE is smart and it shows Content 1 for the whole width page, and other content is after the first one.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

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