我已经在图像中包含了我想要达到的效果。
容器div可能会在某种程度上改变宽度。孩子们应该在他们之间以及彼此之间以及左右两侧都有统一的排水沟。
我注意到边距合并了。我不确定是否有办法说“最小保证金”,或者是否有办法说“散开”。
幸运的是,总会有6个子元素。 (或 n 但它将被修复)
在这种情况下我使用bootstrap。我将研究行/列功能。但我宁愿不依赖它。我宁愿找到一种适用于非引导项目的方式以及b / c,这对我来说是一种更便携的技术。
有没有办法在不引入布局结构的情况下做到这一点?换句话说,是否只有一个规则解决方案?
.phase .float-right {
float: right;
}
.phase .image-carousel {
display: table-cell;
vertical-align:middle;
height: 175px;
width: 900px;
border: 1px solid red;
background-color: orange;
}
.phase .image-carousel .circle {
position: relative;
float: left;
top: calc(0.5vh + 20px);
height: 40px;
width: 50px;
border-radius: 50%;
background-color: white;
padding-top: 10px;
}
.arrow-left {
width: 0;
height: 0;
border-style: solid;
border-width: 15px 26.0px 15px 0;
border-color: transparent #000000 transparent transparent;
margin-left: 10px;
}
.arrow-right {
width: 0;
height: 0;
border-style: solid;
border-width: 15px 0 15px 26.0px;
border-color: transparent transparent transparent #000000;
margin-left: 15px;
}
.phase .image-carousel .thumbnail {
float: left;
top: calc(0.5vh - 100px);
width: 100px;
height: 100px;
border: 2px solid #ddd;
background-color: black;
}
<div class="phase angular-animate" ng-class="color($index)" ng-repeat="phase in phases">
<div class="float-right">
<div class="image-carousel">
<div class="circle">
<div class="arrow-left"></div>
</div>
<div class="thumbnail">
<img src="http://dummyimage.com/100/green.png" />
</div>
<span class="thumbnail">
<img src="http://dummyimage.com/100/green.png" />
</span>
<span class="thumbnail">
<img src="http://dummyimage.com/100/green.png" />
</span>
<span class="thumbnail">
<img src="http://dummyimage.com/100/green.png" />
</span>
<div class="circle">
<div class="arrow-right"></div>
</div>
</div>
</div>
</div>
答案 0 :(得分:3)
孩子们应该在他们之间以及彼此之间以及左右两侧都有统一的排水沟。
您可以使用CSS flexbox
来整理布局。
这是一个简单的例子:
sudo docker exec 29c7bf271d7e service networking reload
* Reloading network interfaces configuration...
Segmentation fault
.wrapper {
display: flex;
border: 1px solid #666;
padding: 10px;
}
.wrapper.around {
justify-content: space-around;
}
.wrapper.between {
justify-content: space-between;
}
.wrapper img {
border: 1px solid #000;
}
答案 1 :(得分:0)
这样的事情会是一个好的开始吗?
.container {
width: 80%;
margin: 0 auto;
background-color: #eee;
text-align: center;
}
.item {
display: inline-block;
width: 15%;
height: 60px;
margin: 10px 2%;
background-color: #bbb;
}
<div class="container">
<div class="item"></div>
<div class="item"></div>
<div class="item"></div>
<div class="item"></div>
<div class="item"></div>
</div>
这个可能会更好......
html, body {
margin: 0;
padding: 0;
}
.container {
width: 80%;
margin: 0 auto;
text-align: right;
white-space: nowrap;
min-width: 500px;
background-color: #eee;
overflow: hidden;
}
.container:before {
content: "";
float: left;
width: 4.5454%;
height: 60px;
margin-left: -0px;
}
.wrapper {
float: left;
width: 18.1818%;
min-width: 80px;
height: 60px;
text-align: center;
padding: 2px 0;
}
.item {
margin-left: auto;
margin-right: auto;
width: 60px;
height: 60px;
background-color: #bbb;
}
<div class="container">
<div class="wrapper"><div class="item"></div></div>
<div class="wrapper"><div class="item"></div></div>
<div class="wrapper"><div class="item"></div></div>
<div class="wrapper"><div class="item"></div></div>
<div class="wrapper"><div class="item"></div></div>
</div>
答案 2 :(得分:0)
只需在子元素上声明margin-left即可。调整左边距,直到间距相等。
.container{
width:100%;
height:100px;
background-color:black;
position:relative;
}
.item{
position:relative;
display:inline-block;
background-color:white;
width:15%;
height:80px;
margin:10px 0;
margin-left:1.44%;
}
<div class="container">
<div class="item"></div><div class="item"></div><div class="item"></div><div class="item"></div><div class="item"></div><div class="item"></div>
</div>