Note that there are some explanatory texts on larger screens.

plurals
  1. POHow can I join background images?
    primarykey
    data
    text
    <p>I have three images that I would like to join in a widget I'm creating in Html. I just want to give the round effect on the corners. These are the three images:</p> <p><img src="https://imgur.com/ydFae.png" alt="alt text"> <img src="https://imgur.com/JrPiK.png" alt="alt text"> <img src="https://imgur.com/jmOYZ.png" alt="alt text"></p> <p>I have the middle one repeating in my css so that it fills up the space between the two edges.</p> <pre><code>.widgetMainLeft { background: url('/Content/Images/Title_Bar_Left.png') no-repeat; width:6px; min-height:100%; } .widgetMain { background: url('/Content/Images/Title_Bar_Middle.png') repeat-x; text-align:left; margin-top:auto; min-height:100%; } .widgetMainRight { background: url('/Content/Images/Title_Bar_Right.png') no-repeat; width:6px; min-height:100%; } </code></pre> <p>I am placing these three classes in one container class, but it simply displays the middle one. The background images are at the top of the widget where the title is.</p> <pre><code>&lt;div class="widgetBody"&gt; &lt;div class="widgetMainLeft" /&gt; &lt;div class="widgetMain"&gt; &lt;div class="widgetTitle"&gt;Messages&lt;/div&gt; &lt;div class="widgetDisplayedArea"&gt; &lt;table&gt; ... &lt;/table&gt; &lt;/div&gt; &lt;/div&gt; &lt;div class="widgetMainRight" /&gt; &lt;/div&gt; </code></pre> <p>This is how the widget looks now:</p> <p><img src="https://imgur.com/05VF7.png" alt="alt text"></p> <p>And this is how it should look:</p> <p><img src="https://imgur.com/yH4KW.png" alt="alt text"></p> <p>How can I make this effect happen?</p>
    singulars
    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.
 

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