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.
サーバーからの寸法がわからないため、画像属性の高さと幅を定義する際に問題に直面しています。width次に、 /heightを に割り当てることを考えますauto。
width
height
auto
例えば
img { height: auto; width: auto; }
widthしかし、特定の/なしでパフォーマンス画像をレンダリングすることについて懸念していますheight。ここにいるフロントエンド開発者に、この懸念を助けてもらいたいと思います。
ちょっと今あなたのimgwidthを定義してください100%
100%
このように
<div class="imgtagcss"> <img src="xxx.jpg" > </div>
CSS
.imgtagcss{ width:xxx; } .imgtagcss img{ width:100%; }