CSSでモバイル版ホームページを作っているのですが余白が消えません。
下の写真の「関連リンク」と「ご予約・お問い合わせ」を横に揃えたいのですが余白のせい?でそろいません。
html
1 <aside id="sidebar"> 2 <section> 3 <div id="sidebanner"> 4 <h2>関連リンク</h2> 5 6 </div> 7 <div id="sidecontact"> 8 <h2>ご予約・お問い合わせ</h2> 9 10 </div> 11 </section> 12 </aside>
css
1 #sidebanner h2{background-color: #A6A6A6; color: #fff; margin: 0; padding: 7px 0px 5px 0px; font-size: 20px; text-align: center;} 2 #sidecontact h2{font-size: 18px; background-color: #FF342F; color: #fff; padding: 4px;} 3 4@media (max-width:767px){ 5 #sidebar{width: 360px; clear: both;} 6 #sidebanner{width: 100px; margin: 0; padding: 0;} 7 #sidecontact{width: 100px; float: right;} 8 #sidebanner{text-align: center; margin: 0;} 9 #sidebar h2{margin: 0;} 10 #gurunabi{display: block; margin:0; width: 90px;} 11 #gurunabi img{width: 100px;} 12 #twitter{float: left;} 13 #facebook{float: left;} 14 #twitter img,#facebook img{width: 50px; height: 50px; margin: 0;} 15 #footernavi {font-size:19px;} 16 .mobilenone{display: none;} 17 .blank{display: inline;} 18 #sidecontact{margin: 0;} 19 #sidecontact address img{width: 14px; height: 20px;} 20 #sidecontact .contactbutton{font-size: 10px;} 21 #sidecontact h2{width: 100px; font-size: 10px; padding: 0;} 22 #sidebanner{margin-bottom: 50px;} 23}
#sidebanner
と#sidecontact
を入れ替えると
####試したこと
・margin,padding 両方とも0にする。
結構長い時間悩んでいるので助けていただけませんでしょうか。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/04/30 09:27
2020/04/30 09:39
2020/04/30 09:40
2020/04/30 09:49
2020/04/30 11:05