Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ここに2つの画像があります
これらの両方を以下のように表示したい
これらは、100px の最大維持率に調整されます。CSSでどのように記述できますか?
これを使って...
image { width: 100px; height: auto; }
もちろん、それに応じ<img src="src" style="width:100px; height:auto;">て幅と高さを変更することもできます100px。
<img src="src" style="width:100px; height:auto;">
100px
以下のようなクラス.resizeを画像に適用すると、必要なことが行われるはずです...
.resize
.resize { max-width: 100px; max-height: 100px; }
例: http://jsfiddle.net/rU5qK/