今のままだと、下から文字がスライドしません
文字を下からスライドさせたいです
HTML
1 2 <div class="designs"> 3 4 <div class="design"> 5 <a href="#"><img src="portfolio_images/portfolio_top.png"></a> 6 <div class="design-text"><p><b>ポートフォリオ</b></p></div> 7 </div>
CSS
1.designs{ 2 height: 434px; 3 width: 100%; 4 display: flex; 5 justify-content: space-between; 6 flex-wrap: wrap; 7 align-content: space-between; 8} 9 10.design a img{ 11 width:100%; 12} 13 14.design{ 15 width:300px; 16 height:200px; 17 padding-bottom:34px; 18 position: relative; 19 overflow: hidden; 20} 21 22.design-text{ 23 width:300px; 24 height:200px; 25 position: absolute; 26 top: 0; 27 bottom: 0; 28 left: 0; 29 right: 0; 30 background: rgba(0,0,0,0.5); 31 opacity: 0; 32 color: #fff; 33 display: flex; 34 align-items: center; 35 text-align: center; 36} 37 38.design-text:hover{ 39 opacity: 1; 40 transition: all 0.6s ease; 41} 42 43.design-text p{ 44 padding-left: 20px; 45}
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/08/28 02:47