css question: how to set the method of resizing an image in css? the <img>-tag itself got the height attribute, but the image shows up very blurry...
@robots hm..yeah..these are all more or less hacky solutions. i think i'll use a different image then perhaps..
@koyu transform-scale or similar?
@Drezil hm..yeah..i solved it now with using an svg image
@koyu I quite don't understand the question but... the img tag accepts the same properties as any box in the page, that is width, and height.
Usually you will want to set only one of these (usually the width) as the browser will authomatically scale the image for you.
If you want something more "advanced" there are CSS tricks by using a background image in a box instead of just an image.