LoginSignup
0
0

【CSS】指定行の文末を三点リーダーにして、それ以降非表示にするCSS

Posted at

指定行の文末を三点リーダーにして、それ以降非表示にするCSSの紹介です!
ブログ記事一覧などで重宝します!

style.css
.blog__title{
	display: -webkit-box;
	-webkit-line-clamp: 1; //表示したい行数を指定
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-bottom: 0; //必ずmarginにする
}

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