css3 - 如图的flex骰子布局是怎么实现的?
问题描述
看了阮一峰大神的博客是如下写的,可是怎么都没有效果
<p class='box'> <span class='item'></span> <span class='item'></span></p>.box { display: flex;}.item:nth-child(2) { align-self: center;}只能是如下的效果

问题解答
回答1:他的这个例子没写对,他页面上还有其他一些例子是错的
可以再增加第三个 item ,背景设为透明来隐藏然后 box 设置 justify-content: space-between
回答2:body{ background: rgb(44, 44, 44)} .box { display: flex; width: 200px; height: 200px; background: rgb(225,225,225); border-radius:10px; border:outset white 10px;}.item{ width: 30%; height: 30%; background: rgb(44, 44, 44); border-radius: 50%;}.item:nth-child(1) { margin: 5px } .item:nth-child(2) { align-self: center;}回答3:
样式没加,哥们
相关文章:
1. angular.js - $emit(,)的具体意思是什么作用呢?2. 为什么我ping不通我的docker容器呢???3. golang - 用IDE看docker源码时的小问题4. javascript 如何下载一个excel文件 ?5. Mysql取下一条记录6. python3.x - python连oanda的模拟交易api获取json问题第五问7. docker 17.03 怎么配置 registry mirror ?8. 在windows下安装docker Toolbox 启动Docker Quickstart Terminal 失败!9. docker内创建jenkins访问另一个容器下的服务器问题10. 在mac下出现了两个docker环境

网公网安备