Quantcast
Channel: CSSタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 8577

CSS 要素を下揃えにする

$
0
0

以下のように親要素の中にboxがあります。
上揃えになっています。

<divclass="wrapper"><divclass="box"></div></div>
.wrapper{background:gray;width:600px;height:400px;}.box{background:yellow;margin:0auto;width:200px;height:200px;}

スクリーンショット 2020-01-22 23.03.50.png

boxを下揃えにします。
displayをflex、縦ならびにしたいのでflex-directionはcolumnとなります。
さらにその状態から逆方向に並べたいのでflex-directionをcolumn-reverseとします。

.wrapper{background:gray;width:600px;height:400px;display:flex;flex-direction:column-reverse;}.box{background:yellow;margin:0auto;width:200px;height:200px;}

スクリーンショット 2020-01-22 23.02.46.png


Viewing all articles
Browse latest Browse all 8577

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>