0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

モーダルのCSSはこれ使っとけばええ

Last updated at Posted at 2025-05-25

これです

aspect-ratio: 1280 / 1000;
width: min(100vw, calc(100vh * (1280 / 1000)), 1280px);
max-width: 1280px;
max-height: 1000px;

要素をアスペクト比を維持しながら
横が見切れそうな時は横に合わせて拡大縮小
縦が見切れそうなときは縦に合わせて拡大縮小してくれます

アスペクト比のところは変数化して使うと便利です

フォントだけは親サイズに合わせてレスポンシブ対応するとなるとJS使わないとできないのでvw、vh、min()などを使っていい感じに調整してください

短いですが以上です

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?