博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[CSS] Change the Alignment of a Single Flexed Item with 'align-self'
阅读量:4983 次
发布时间:2019-06-12

本文共 1007 字,大约阅读时间需要 3 分钟。

Inside of a flexed container, a single item can control its own flex with align-self. The possible values are flex-startflex-endcenter, or stretch

 

Inside column layout, the ' stretch' is also limited by the 'height'; 

Inside row layout, the 'stretch' is aslso limited by the 'width'.

 

body {
display: flex; flex-direction: row;}.container {
background-color: #ebb871; display: flex; flex-direction: column; justify-content: space-between; align-items: center}.box1 {
min-width: 50px; min-height: 50px; /*align-self: flex-start; align-self: flex-end; align-self: center;*/ align-self: stretch;}

 

body {
display: flex; flex-direction: column;}.container {
background-color: #ebb871; display: flex; flex-direction: row; justify-content: space-between; align-items: center}.box1 {
min-width: 50px; min-height: 50px; /*align-self: flex-start; align-self: flex-end; align-self: center;*/ align-self: stretch;}

 

 

转载于:https://www.cnblogs.com/Answer1215/p/11527379.html

你可能感兴趣的文章
DataList数据绑定的一个简单代码
查看>>
新闻页面的链接可以简单地实现了
查看>>
Internal关键字
查看>>
HIS项目框架搭建流程
查看>>
Access Control
查看>>
使用mpvue开发小程序教程(一)
查看>>
NOIP2013普及组 -SilverN
查看>>
substring和substr小结
查看>>
onbeforeunload与onunload事件
查看>>
android端的的网络访问
查看>>
escape()、encodeURI()、encodeURIComponent()区别详解
查看>>
retry
查看>>
使用jQuery插件轻松实现动态流动的网页布局
查看>>
[转]6个HelloWorld
查看>>
C调用C++接口
查看>>
Golang系列:抓取网页内容
查看>>
jquery扩展的两个方法与区别 $.extend $.fn.extend
查看>>
CodeForces_937C Save Energy!(贪心)
查看>>
[Gatsby] Install Gatsby and Scaffold a Blog
查看>>
[Recompose] Add Local State to a Functional Stateless Component using Recompose
查看>>