I must be doing something stupid or looking over something obvious, because no matter what I do I cannot get these three div
s inline inside this parent.
.stats {
display: inline-block;
margin-right: 6px;
float: right;
padding: 0;
font-family: "Roboto" sans-serif;
color: black;
}
.separator {
background: rgba(47, 187, 255, 0);
height: 20px;
width: 1px;
vertical-align: middle;
border-left: solid;
border-width: 1px;
border-color: rgba(0, 124, 184, 0.7);
float: left;
margin-top: 5px;
margin-left: 4px;
margin-right: 4px;
display: block;
}
<div class="stats">
<div class="points"><b>Lorem </b> 142</pdiv>
<div class="separator"></div>
<div class="luck"><b>Ipsum</b> 64% <i>Blabla 3</div>
</div>
What am I doing wrong?
Added
float:left;
to the .stats div-children.