Responsive images

前端 未结 2 739
渐次进展
渐次进展 2020-12-11 12:25

I\'m not looking for a inventive solution on the images, I\'ve read plenty of content about loading images etc.

I\'m just doing some basic responsive design and want

2条回答
  •  北海茫月
    2020-12-11 12:59

    Apply max-width to your images.

    img {
        max-width: 100%;
    }
    

    http://jsfiddle.net/VBHhD/

    I would also use an unordered list for navigation, but that's just me.

提交回复
热议问题