Last active
November 4, 2020 01:47
-
-
Save xsthunder/186281acfff33df8da5def263755ea93 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.container{ | |
width: 500px; | |
display: flex; | |
flex-direction: column; | |
background: yellow; | |
} | |
.container-eachline{ | |
display: flex; | |
flex-direction: row; | |
margin-top: 10px; | |
margin-bottom: 10px | |
} | |
.container-eachline div:first-child{ | |
flex: 1; | |
} | |
.container-eachline div:first-child img{ | |
float: right; | |
} | |
.container-eachline div:last-child{ | |
flex: 1 | |
} | |
img{ | |
width:20px; | |
} | |
.title{ | |
padding-left: 10px; | |
padding-right: 10px; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="container"> | |
<div class="container-eachline"> | |
<div> | |
<img src="https://github.githubassets.com/images/spinners/octocat-spinner-128.gif"/> | |
</div> | |
<div class="title"> | |
标题 | |
</div> | |
<div> | |
<img src="https://github.githubassets.com/images/spinners/octocat-spinner-128.gif"/> | |
</div> | |
</div> | |
<div class="container-eachline"> | |
<div> | |
<img src="https://github.githubassets.com/images/spinners/octocat-spinner-128.gif"/> | |
</div> | |
<div class="title"> | |
标题标题 | |
</div> | |
<div> | |
<img src="https://github.githubassets.com/images/spinners/octocat-spinner-128.gif"/> | |
</div> | |
</div> | |
<div class="container-eachline"> | |
<div> | |
<img src="https://github.githubassets.com/images/spinners/octocat-spinner-128.gif"/> | |
</div> | |
<div class="title"> | |
标题标题标题标题 | |
</div> | |
<div> | |
<img src="https://github.githubassets.com/images/spinners/octocat-spinner-128.gif"/> | |
</div> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
参考前端布局神器display:flex - 青春时光 - 博客园