0
0

More than 1 year has passed since last update.

HTMLメモ

Last updated at Posted at 2022-07-16

カレンダー表示

image.png

<p>日付を入力してください。</p>
<input type="date" value="2022-07-16">

value値にデフォルトの日付をセットしてあげます。

画像の遅延ロード

<img src="hoge.jpg" loading="lazy" alt="">

スムーススクロール

html {
    scroll-behavior: smooth;
}

アスペクト比固定

img {
    aspect-ratio: 16/9;
    width: 100%;
    height: 100%;
}
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