CSSでアスペクト比の指定をする

例えば正方形なら

div{
	aspect-ratio: 1 / 1;
}

例えば16:9なら

div{
	aspect-ratio: 16 / 9;
}