htmlで<%= link_to ........... %>を使ったところ飛んだリンク先のcssがくずれてしまいます。ですが、リロードするとcss は指定通りになります。何が原因でこうなっていてどうすれば直るか教えていただきたいです。
リンクに飛んだ直後
css
1h1{ 2 margin-top: 70px; 3 text-align: center; 4 color: #454545; 5 font-size: 40px; 6} 7 8input{ 9 background-color: white; 10 transition: all .6s ease; 11 border:2px solid gray; 12 13 border-radius:0px; 14 width:400px; 15 height: 35px; 16 font-size: 20px; 17 color: #3c3c3c; 18 outline: none 19} 20 21.name{ 22 23} 24.a{ 25 text-align: center; 26} 27.b{ 28 text-align: center; 29 margin-right: 360px; 30 margin-top: 30px; 31} 32.bb{ 33 text-align: center; 34 margin-right: 308px; 35 margin-top: 30px; 36} 37.bbb{ 38 text-align: center; 39 margin-right: 332px; 40 margin-top: 30px; 41} 42.next{ 43 text-align: center; 44 margin-top: 10px; 45} 46 47.next button{ 48 font-size: 25px; 49 color: white; 50 width: 100px; 51 height: 40px; 52 border-radius: 0px; 53 border-style: none; 54 background-color: black; 55 outline: none; 56} 57.next button:hover{ 58 background-color: black; 59コード
html
1<h1>入力してください</h1> 2<%= form_tag("/users/create") do %> 3 <p class="b">名前</p> 4 <div class="a"> 5 <input name="name" class="name"> 6 </div> 7 <p class="bb">メールアドレス</p> 8 <div class="a"> 9 <input type="mail" name="mail" class="mail"> 10 </div> 11 <p class="bbb">パスワード</p> 12 <div class="a"> 13 <input type="password" name="password" class="password"> 14 </div> 15 <div class="next"> 16 <button type="button" name="next">登録</button> 17 </div> 18<% end %> 19 20コード
回答1件
あなたの回答
tips
プレビュー