質問をすることでしか得られない、回答やアドバイスがある。

15分調べてもわからないことは、質問しよう!

新規登録して質問してみよう
ただいま回答率
85.35%
Ruby

Rubyはプログラミング言語のひとつで、オープンソース、オブジェクト指向のプログラミング開発に対応しています。

Ruby on Rails 6

Ruby on Rails 6は、オープンソースのWebアプリケーションフレームワークです。「同じことを繰り返さない」というRailsの基本理念のもと、他のフレームワークより少ないコードで簡単に開発できるよう設計されています。

HTML

HTMLとは、ウェブ上の文書を記述・作成するためのマークアップ言語のことです。文章の中に記述することで、文書の論理構造などを設定することができます。ハイパーリンクを設定できるハイパーテキストであり、画像・リスト・表などのデータファイルをリンクする情報に結びつけて情報を整理します。現在あるネットワーク上のほとんどのウェブページはHTMLで作成されています。

CSS

CSSはXMLやHTMLで表現した色・レイアウト・フォントなどの要素を指示する仕様の1つです。

Q&A

解決済

1回答

706閲覧

同じコードに同じCSSなのに、ユーザーによってレイアウトが異なる謎現象を解決してください。

ryuya1204

総合スコア12

Ruby

Rubyはプログラミング言語のひとつで、オープンソース、オブジェクト指向のプログラミング開発に対応しています。

Ruby on Rails 6

Ruby on Rails 6は、オープンソースのWebアプリケーションフレームワークです。「同じことを繰り返さない」というRailsの基本理念のもと、他のフレームワークより少ないコードで簡単に開発できるよう設計されています。

HTML

HTMLとは、ウェブ上の文書を記述・作成するためのマークアップ言語のことです。文章の中に記述することで、文書の論理構造などを設定することができます。ハイパーリンクを設定できるハイパーテキストであり、画像・リスト・表などのデータファイルをリンクする情報に結びつけて情報を整理します。現在あるネットワーク上のほとんどのウェブページはHTMLで作成されています。

CSS

CSSはXMLやHTMLで表現した色・レイアウト・フォントなどの要素を指示する仕様の1つです。

0グッド

0クリップ

投稿2020/10/19 09:46

#解決したいこと
CSSでレイアウトの調整をしているのですが、以下のように全くレイアウトが異なります。
しかもユーザーが異なるとレイアウトが変更するという謎現象です。
レイアウト元のビューもCSSが同じなのにこんなことって起こり得るんでしょうか?

training/show.html.erbのview
training/edit.html.erbのview

それぞれユーザーが自身のユーザーのshow,editを閲覧するときにこの珍現象が発生してしまいます。
何日か前までは正常だったのですが、コードを追加していく中で起こった出来事だと思いますが、該当箇所が分からない状態です。

ネットで検索しても同様の現象がなかなか見られなかったので(自身の検索が悪いのだとは思いますが)
何が原因かも分かっていない状態です。

コードは下記の通りになります。

game/edit.html.erb

<h1>試合内容</h1> <div class="parent"> <%= form_with(model: @game,id: 'new_training', class: 'new_training', local: true) do |f| %> <div class="field"> <%= f.label :日付を選択, class: 'date_lavel' %> <%= f.date_field :date, class: 'select_date' %> </div> <div class="field"> <%= f.label :"対戦相手" %> <br> <%= f.text_area :opponent, autofocus: true %> </div> <div class="field"> <%= f.label :"結果" %><br> <%= f.text_area :result, autofocus: true %> </div> <div class="field"> <%= f.label :"良かった点" %><br> <%= f.text_area :good_point, autofocus: true %> </div> <div class="field"> <%= f.label :"反省点" %><br> <%= f.text_area :game_introspection, autofocus: true %> </div> <div class="register_actions"> <div class="actions"> <%= f.submit "変更" %> <div class="field"> <%= link_to '削除', game_path, method: :delete %> </div> </div> <% end %> <div class="comment_contents"> <div class="container"> <% if current_user %> <%= form_with(model: [@game, @game_comment], local: true) do |f| %> <%= f.text_area :text, placeholder: "コメントする", rows: "2" %><br> <div class="submit_btn"> <%= f.submit "SEND" %> </div> <% end %> <% else %> <strong><p>※※※ コメントの投稿には新規登録/ログインが必要です ※※※</p></strong> <% end %> <div class="comments"> <div class=comment_title> <h4><コメント一覧></h4> </div> <% if @game_comments %> <% @game_comments.each do |comment| %> <p> <strong><%= comment.user.name %>:</strong> <%= comment.text %> </p> <% end %> <% end %> </div> </div> </div>

game/show.html.erb

<h1>試合内容</h1> <div class="field"> <div class="list"> <label for="label">日付</label><br> <div class="label"> <%= @game.date %><br> </div> <label for="label">練習メニュー</label><br> <div class="label"> <%= @game.opponent%><br> </div> <label for="label">目的</label><br> <div class="label"> <%= @game.result %><br> </div> <label for="label">反省</label><br> <div class="label"> <%= @game.good_point %><br> </div> <label for="label">反省</label><br> <div class="label"> <%= @game.game_introspection %><br> </div> </div> <div class="comment_contents"> <div class="container"> <% if current_user %> <%= form_with(model: [@game, @game_comment], local: true) do |f| %> <%= f.text_area :text, placeholder: "コメントする", rows: "2" %><br> <div class="submit_btn"> <%= f.submit "SEND" %> </div> <% end %> <% else %> <strong><p>※※※ コメントの投稿には新規登録/ログインが必要です ※※※</p></strong> <% end %> <div class="comments"> <div class=comment_title> <h4><コメント一覧></h4> </div> <% if @game_comments %> <% @game_comments.each do |comment| %> <p> <strong><%= comment.user.name %>:</strong> <%= comment.text %> </p> <% end %> <% end %> </div> </div> </div>

game.scss

// Place all the styles related to the games controller here. // They will automatically be included in application.css. // You can use Sass (SCSS) here: http://sass-lang.com/ .parent { position: relative; height: 200px; } .new_games { position: absolute; height: 50px; width: 200px; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 16px; } .field { margin: 15px; } .register_actions { text-align: center; } .success { display:flex; align-items: center; justify-content: center; flex-flow: column; margin-top: 100px; } .update { justify-content: center; margin-bottom: 80px; }

comments.css

// Place all the styles related to the comments controller here. // They will automatically be included in application.css. // You can use Sass (SCSS) here: http://sass-lang.com/ .parent { width: 100%; } .field { width: 100%; } .comment_contents { text-align: center; } .containar { display: inline-block; text-align: left; } .comments { margin-top: 90px; border: solid 2px black; background-color: white; text-align: left; width: 50%; margin-left: 365px; margin: 0 auto; } .comment_title { text-align: center; } .submit_btn { margin-bottom: 30px; }

ご回答よろしくお願いいたします。

気になる質問をクリップする

クリップした質問は、後からいつでもMYページで確認できます。

またクリップした質問に回答があった際、通知やメールを受け取ることができます。

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

guest

回答1

0

ベストアンサー

html

1 <div class="register_actions"> 2 <div class="actions"> 3 <%= f.submit "変更" %> 4 5 <div class="field"> 6 <%= link_to '削除', game_path, method: :delete %> 7 </div> 8 9 </div> 10 <% end %>

ここでのendform_withを閉じるものになりますが、その手前の<div class="register_actions">を閉じる</div>がないために、タグのネストが崩れてしまっているようです。他にもそういう問題がないか探してみましょう。

投稿2020/10/19 10:46

編集2020/10/19 10:47
maisumakun

総合スコア146018

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

ryuya1204

2020/10/19 12:06

なるほど! 確かに、divで閉じれておりませんでした。 ありがとうございます!
guest

あなたの回答

tips

太字

斜体

打ち消し線

見出し

引用テキストの挿入

コードの挿入

リンクの挿入

リストの挿入

番号リストの挿入

表の挿入

水平線の挿入

プレビュー

15分調べてもわからないことは
teratailで質問しよう!

ただいまの回答率
85.35%

質問をまとめることで
思考を整理して素早く解決

テンプレート機能で
簡単に質問をまとめる

質問する

関連した質問