【スポンサーリンク】

[CSS]ブログカードの画像のアスペクト比を変更した[object-fit, aspect-ratio]

[CSS]ブログカードの画像のアスペクト比を変更した[object-fit, aspect-ratio]

これまで一行で表示できるタイトル文字数が少なくて、タイトルが長くなると読みにくいことが気になっていました。

ブログカードのデザインを少し変更しました。

そこで、まず画像のアスペクト比を変更したり、文字のサイズを少し小さくして、タイトルを長めに取れるようにしました。

[CSS]ブログカードの画像のアスペクト比を変更した[object-fit, aspect-ratio]

CSSで自動的に画像のアスペクト比を変えて、トリミングすることができました。

img{
    object-fit:cover;
    aspect-ratio: 100/100;
}

また、ドメイン名の色を変更することで、タイトルと区別しやすくしました。

/*** ブログカードのデザインを整える
*/

article  .blogcard-domain {
	color: #1967d2;
	font-weight:bold;
}
article .blogcard-thumbnail {
	width:160px;
}
.ib-right .blogcard-content, .eb-right .blogcard-content {
	margin-right: 170px;
}

@media screen and (max-width: 840px) {
	article .blogcard-thumbnail {
		width:80px;
	}
	.ib-right .blogcard-content, .eb-right .blogcard-content {
		margin-right: 90px;
	}
	article .blogcard-thumbnail img{
		object-fit:cover;
		aspect-ratio: 100/100;
	}
}
article .blogcard-title {
	margin-top: 1.7em;
	margin-bottom: 0;
}

QRコードを読み込むと、関連記事を確認できます。

[CSS]ブログカードの画像のアスペクト比を変更した[object-fit, aspect-ratio]
【スポンサーリンク】
タイトルとURLをコピーしました