改行をいれるために simple_format を使ったのですが、それまで効いていたCSSが効かなくなりました。
調べた結果 simple_format を使うと強制的に pタグ 扱いになってしまうらしいです。
よろしくお願いいたします
erb
1 <div class="show"> 2 <p id="notice"><%= notice %></p> 3 4 <h2 class="title"> 5 <strong><%= @tweet.title %></strong> 6 </h2> 7 8 <p class="show-string"> 9 <%= simple_format(@tweet.content) %> //ここにclass="show-string"を当てたいです!// 10 </p> 11 12 <div class="control"> 13 <%= link_to 'Edit', edit_tweet_path(@tweet) %> | 14 <%= link_to 'Back', tweets_path %> 15 </div> 16</div> 17 18<%= render "layouts/tweet_index.html.erb" %>
css
1.show-string { 2 font-size: 1.5em; 3 margin: 50px 0; 4 line-height: normal; 5}
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/03/17 21:21