We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
.html_safeで表示制御
<p class="card-text news-text"><%#= news.content.html_safe %></p>
contentカラムの中に保存されているのがソースコードになっていて、.html_safeでタグを表示しないようにしており、 尚且つ三行以降は表示しないようにしたいが反映されない。
.news-text{ overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
<%= news.content.html_safe %>
ボックスからはみ出てしまう。
.html_safeを外せば想定通り3行になるため、.html_safe
ひとまずタイトルのみで対応
The text was updated successfully, but these errors were encountered:
No branches or pull requests
概要
.html_safeで表示制御
contentカラムの中に保存されているのがソースコードになっていて、.html_safeでタグを表示しないようにしており、
尚且つ三行以降は表示しないようにしたいが反映されない。
再現手順
<%= news.content.html_safe %>
修正しないとどう困るか
ボックスからはみ出てしまう。
原因
.html_safeを外せば想定通り3行になるため、.html_safe
修正案
ひとまずタイトルのみで対応
The text was updated successfully, but these errors were encountered: