网上做的一道题:请用html和css实现以下效果(移动设备),要求①三个圆形icon大小为80px,固定不变,②被三个圆形icon划分的四个间距相等,③黑色背景需要占满移动设备的宽度
我一开始的代码是这样的:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
<style>
#d{
width:100%;
height:200px;
background:#000000;
display: flex;
justify-content:space-around;
align-items:center;
}
.icon{
width:80px;
height:80px;
background:#ffffff;
border-radius:50%;
}
</style>
</head>
<body>
<div id="d">
<div class="icon"></div>
<div class="icon"></div>
<div class="icon"></div>
</div>
</body>
</html>
最后发现 justify-content:space-around;只是让三个div平分宽度,左右两边的间距只是中间两个间距的一半长,如何解决这个问题呢?