html - Internet Explorer hides php content -
the problem i'm not advanced did wrong..
first page on site opens correctly on chrome , firefox, on internet explorer footer image sticks header image hiding 2 images in between.
the website: http://www.joniart.com
i've tried make similar landing html page, <div>
content issue remains.
your problem height of elements:
<img width="355" height="inherit" alt="lietuviskai" src="http://joniart.com/wp-content/themes/tut/static_images/ranka_k.jpg" border="0" complete="complete"/>
give them real height
<img width="355" height="300" alt="lietuviskai" src="http://joniart.com/wp-content/themes/tut/static_images/ranka_k.jpg" border="0" complete="complete"/>
and should work.
from mdn:
height
the height of image in html5 css pixels, or html 4 in pixels or percentage.
i don't thinkg inherit
valid value.
source: https://developer.mozilla.org/en-us/docs/web/html/element/img
Comments
Post a Comment