Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Internet Explorer adds height- and width-attributes to a newly appended image automatically

I append a newly created image after it has been loaded to the DOM:

var i = $('<img/>');
i[0].src = 'http://placehold.it/700x300';
i.attr('alt', '');
i.on('load', function() {
    $('body').append(i);            
});

I have set a fixed height for the images in CSS:

img {
    height: 150px;
}

Unfortunately the Internet Explorer adds the width- and height-attributes to the image so it gets heavily distorted. How can I prevent this? Do I have to manually remove the attributes after I append the element?

jsFiddle link

like image 766
lampshade Avatar asked Sep 20 '13 17:09

lampshade


1 Answers

Try this:

img {
    height: 150px;
    width: auto;
}
like image 189
doitlikejustin Avatar answered Oct 21 '22 04:10

doitlikejustin