前提・実現したいこと
現在、初心者としてフロントエンドを独学中となります。
まずHTML/CSSのみで1からポートフォリオの作成を行っております。
イメージ画像と文字と星評価(★★★☆☆)を中央揃えの実施を行っています。
発生している問題・エラーメッセージ
星評価(★★★☆☆)を中央揃えが行えません。
画像(黄緑色塗りつぶし部分)
該当のソースコード
HTML
1 <section> 2 <div id="skil"> 3 <h1>スキル</h1> 4 <ol> 5 <li> 6 <div class="logo"> 7 <img src="src/ExcelVBA.png" alt="ExcelVBAロゴ"> 8 <p>VBA</p> 9 <div class="star"> 10 <div class="star-item star2"></div> 11 </div> 12 </div> 13 </li> 14 </ol> 15 </div> 16 </section> 17 18 19、、、CSS 20.star { 21 position: relative; 22 display:inline-block; 23 background-color: greenyellow; 24 text-align: center; 25 justify-content:center; 26} 27.star .star-item{ 28 position:absolute; 29 overflow: hidden; 30 justify-content:center; 31 text-align: center; 32} 33.star .star-item:before{ 34 content:"★★★★★"; 35 color: #ffcc33; 36 justify-content:center; 37 text-align: center; 38} 39.star:after { 40 content:"★★★★★"; 41 color: #ccc; 42 justify-content:center; 43 text-align: center; 44} 45 46.star2 { 47 width:40%; 48 text-align: center; 49 justify-content:center; 50} 51 52 53### 試したこと 54 55 justify-content:center; 56 text-align: center; 57 などで★評価部分のみの中央揃えを試しましたが、上手くいきませんでした。 58 59### 補足情報(FW/ツールのバージョンなど) 60 61ブラウザはChrome使用 62テキストエディターはVScodeを使用 63 64ぜひ、ご回答のほどお願いいたします。
回答2件
あなたの回答
tips
プレビュー