Note that there are some explanatory texts on larger screens.

plurals
  1. POBroken background in all browsers except Firefox
    text
    copied!<p>I have a gwt project that has a panel where I added a style name to called "dock". When I open my application in Firefox everything is fine but in Chrome, Safari and IE the background isn't complete. This is my css code:</p> <pre><code>.dock { background: #e3e8f3 url(img/hborder.png) repeat-x 0px -1000px; padding: 4px 4px 4px 8px; width: 100%; margin: 0; position: relative; } </code></pre> <p>This is how it looks in Firefox (it should look like this) <a href="http://img64.imageshack.us/img64/7774/firefoxscreenshot.jpg" rel="nofollow">Screenshot</a></p> <p>And this is how it looks in the other browsers like chrome: <a href="http://img842.imageshack.us/img842/8742/chromescreenshot.jpg" rel="nofollow">Screenshot</a></p> <p>Any ideas how to correct this? Thanks in advance.</p> <p>[EDIT:]</p> <p>This is the html code generated by gwt: </p> <pre> <code> &lt;table cellspacing="0" cellpadding="0" class="dock" style="position: absolute; left: 0px; top: 0px; right: 0px; bottom: 0px;"> &lt;tbody> &lt;tr> &lt;td align="left" style="vertical-align: top;"> &lt;button type="button" class="gwt-Button gwt-Button-helpButton" title="Zoek hulp">&lt;/button> &lt;/td> &lt;td align="left" style="vertical-align: top;"> &lt;button type="button" class="gwt-Button gwt-Button-browseButton" title="Blader door de database.">&lt;/button> &lt;/td> &lt;td align="left" style="vertical-align: top;"> &lt;button type="button" class="gwt-Button gwt-Button-statButton" title="Laat populaire boeken zien">&lt;/button> &lt;/td> &lt;td align="left" style="vertical-align: top;"> &lt;button type="button" class="gwt-Button gwt-Button-search" title="Zoek een boek">&lt;/button> &lt;/td> &lt;td align="left" style="vertical-align: top;"> &lt;input type="text" class="gwt-TextBox gwt-TextBox-searchQuery"> &lt;/td> &lt;/tr> &lt;/tbody> &lt;/table> </code> </pre> <p>I noticed with firebug the panel also has got this css markup (this markup is automatically added when compiling in gwt).</p> <pre><code>element.style { bottom: 0; left: 0; position: absolute; right: 0; top: 0; } </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