我现在正在制作一个网站,但我想要有4个cirlcles,它们彼此相邻, 它们之间的边距约为50px。我可以让其中一个圆圈处于正确的位置,但是当我想要做更多的圆圈时,它就不会显示圆圈。
我的css是:
.webdesign-circle {
height: 200px;
width: 200px;
background: #0EB1E8;
border-radius: 50%;
margin: 50px 0px 0px 70px;
float: left;
}
.onderhoud-cirlce {
height: 200px;
width: 200px;
background: #0EB1E8;
border-radius: 50%;
margin: 70px 0px 0px 150px;
float: left;
}
提前致谢
答案 0 :(得分:1)
<!DOCTYPE html>
<html>
<head>
<title></title>
<style type="text/css">
.wrapper {
width: 600px;
margin: 0 auto;
}
.circle {
height: 100px;
width: 100px;
border-radius: 100%;
margin: 25px;
background: #213;
display: inline-block;
}
.circle:first-child {
margin-left: 0px;
}
.circle:last-child: {
margin-right: 0px;
}
</style>
</head>
<body>
<div class="wrapper">
<div class="circle one"></div>
<div class="circle two"></div>
<div class="circle three"></div>
<div class="circle four"></div>
</div>
</body>
</html>
答案 1 :(得分:0)
这是你的意思吗?您可以使用margin-left
http://jsfiddle.net/wzv4gmft/7/
答案 2 :(得分:0)
也许你的意思是这样的
<强> HTML 强>:
<div class="circle one"></div>
<div class="circle two"></div>
<div class="circle three"></div>
<div class="circle four"></div>
<强> CSS 强>
.circle {
height: 200px;
width: 200px;
border-radius: 100%;
display: inline-block;
margin-left: 50px;
}
.one {
background: #e6e6e6
}
.two {
background: #e6e6e6
}
.three {
background: #e6e6e6
}
.four {
background: #e6e6e6
}
您可以通过不同的div(一,二,三,四和五)更改每个圆圈的背景颜色
答案 3 :(得分:0)
我的尝试:)
修改:你有一个拼写错误,我在我的例子中复制了它{l} {/ 1}}
小提琴:http://jsfiddle.net/14f0vunh/
<强> HTML 强>
.onderhoud-cirlce
<强> CSS 强>
<div class="webdesign-circle"></div>
<div class="onderhoud-circle"></div>
<div class="test-circle"></div>