好吧,我只是試圖使用width:10%;
來縮小.jpg
中的社交圖標的大小。而不是按比例縮小,它是squishy。 我使用的圖片尺寸爲250px×250px,用於社交圖標圖片需要相對於屏幕尺寸增長。有任何想法嗎?圖像與%不成比例地縮小?
HTML
<div class="social-footer">
<h3 class="connect-us-title">Connect With Us</h3>
<div class="social-flex">
<img class="social-icon" src="img/desktop/images/twitter.jpg">
<img class="social-icon" src="img/desktop/images/insta.jpg">
<img class="social-icon" src="img/desktop/images/fb.jpg">
</div>
</div>
CSS
/* SOCIAL */
.social-footer {
margin: 2rem 0;
}
.social-icon {
max-width: 100%;
width: 10%;
height: auto;
}
.social-flex {
display: flex;
justify-content: space-around;
}