【追記】左右は中央になったので、CSSを編集しました。
上下中央ができません。。。
【design-list-item】の画像をhoverすると、画像上に
【design-list-text】の中の【pクラスtitle】と【pクラスmore】の文字が上下中央に並ぶようにしたいです。。。
HTML
1 <section class="section-wrapper"> 2 <h2 class="section-title">design</h2> 3 <ul class="design-list"> 4 <li class="design-item"> 5 <a href="portfolio_pf.html" target="_blank"> 6 <div class="design-list-img"><img src="./img/portfolio_top.png"></div> 7 <div class="design-list-text"> 8 <p class="title">ポートフォリオサイト</p> 9 <p class="more">more</p> 10 </div> 11 </a> 12 </li>
CSS
1.design-list{ 2 max-width: 1000px; 3 margin: 0 auto 80px; 4 padding: 0 50px; 5 display: flex; 6 justify-content: space-between; 7} 8.design-item{ 9 width: 32%; 10 position: relative; 11 overflow: hidden; 12} 13.design-item a{ 14 color: #141414; 15 text-decoration: none; 16} 17.design-list-text{ 18 position: absolute; 19 top: 0; 20 bottom: 0; 21 left: 0; 22 right: 0; 23 background: rgba(0,0,0,0.5); 24 opacity: 0; 25 text-align: center; 26 align-items: center; 27 color: #fff; 28} 29.design-list-text:hover{ 30 opacity: 1; 31 transition: all 0.6s ease; 32} 33.title{ 34 padding-bottom: 10px; 35} 36.more{ 37 border: 1px #fff solid; 38 padding:5px; 39 font-size: 12px; 40 width:60px; 41} 42.more:hover{ 43 background-color: white; 44 color: rgba(0,0,0,0.5); 45 transition: all 0.3s; 46} 47.design-list-text p { 48 margin: 0 auto; 49}
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/08/28 02:40