liの、Home,会社概要、自社物件案内、お問い合わせ、採用情報を
画面サイズが変化してもキレイに等間隔で揃えたいです。
PC、スマホ毎の画像サイズでないく、PCのみでの、画像サイズが変化する場合です。
HTML
1コード 2<div class="header-container"> 3 <img src="Pmain.JPG" alt="画像"> 4 <h2><span class="far fa-building fa-fw org"></span>〇〇〇</h2> 5 <div class="header-list"> 6 <ul> 7 <li>Home</li> 8 <li>会社概要</li> 9 <li>自社物件案内</li> 10 <li>お問い合わせ</li> 11 <li>採用情報</li> 12 </ul> 13 </div> 14</div>
CSS
1コード 2.header-container { 3 position: relative; 4} 5 6.header-container img { 7 height: auto; 8 background-size: cover; 9 width: 100%; 10} 11 12.org{ 13 opacity: 0.5; 14} 15 16.container { 17 margin: 0 auto; 18 width: 100%; 19} 20header h2 { 21 font-size: 30px; 22 border: 3px inset gray; 23 display: inline-block; 24 padding: 3px; 25 background-color: rgba(249, 237, 228, 0.5); 26 margin: 10px 5px; 27 width: 150px; 28 letter-spacing: 3px; 29 position: absolute; 30 top: 0; 31 left: 0; 32} 33 34.container span { 35 padding: 0px 5px; 36 height: 26.25px; 37 margin: 10px auto; 38 39} 40 41.header-list { 42 background-color: rgba(45,52,60,0.7); 43 width: 100%; 44 height: 50px; 45 position: absolute; 46 bottom: 0; 47 48} 49 50.header-list ul { 51 position: absolute; 52 top: 0; 53 margin: 0 auto; 54 width: 100%; 55 display: table-cell; 56} 57 58.header-list li { 59 float: left; 60 color: white; 61 cursor: pointer; 62 width: 20%; 63 padding-top: 13px; 64 text-align: center; 65} 66 67.header-list li:hover { 68 opacity: 0.5; 69 70}
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/09/25 05:53