前提・実現したいこと
パソコン表示では右寄せ、スマホ表示では中央にもっていきたいです。
どうしたらいいでしょうか。よろしくお願いします。
html
1<header> 2<div id="topIn01"> 3 <ul class="pctop"> 4 <li class="information"><a href="#">お知らせ</a></li> 5 <li class="access"><a href="#">アクセス</a></li> 6 <li class="faq"><a href="#">よくあるご質問</a></li> 7 <li class="contact"><a href="#">お問い合わせ</a></li> 8 9 </ul> 10 </div> 11</header>
css
1#topIn01 ul{ 2 text-align: right; 3 } 4 #topIn01 ul li{ 5 display: inline-block; 6 color: #4faf87; 7 text-align: right; 8 padding-left: 0px; 9 margin-left: 10px; 10 } 11 #topIn01 ul li a{ 12 display: inline-block; 13 color: #4faf87; 14 font-weight: bold; 15 font-size: 13px; 16 text-decoration: none; 17 } 18 #topIn01 ul .information{ 19 background: url(ico_information.png) no-repeat left 5px; 20 width: 75px; 21 } 22 #topIn01 ul .access{ 23 background: url(ico_access_pc.png) no-repeat left center; 24 width: 71px; 25 } 26 #topIn01 ul .siteMap{ 27 background: url(ico_sitemap.png) no-repeat left 6px; 28 width: 100px; 29 } 30 #topIn01 ul .faq{ 31 background: url(ico_faq_pc.png) no-repeat left 6px; 32 width: 115px; 33 } 34 #topIn01 ul .contact{ 35 background: url(ico_contact_pc.png) no-repeat left 6px; 36 width: 103px; 37 } 38 #topIn01{ 39 position: relative!important; 40 }
試したこと
メディアクエリなどいろいろやってみたのですが、スマホ表示が中央になりませんでした。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/02/24 01:33