Can you show me how to have two inline-blocks with the second one positioned 10 pixels up from the bottom? I'm not sure how to do this. Here is a snippet of my code:
.test1{
display:inline-block;
border: 1px solid red;
min-height: 50px;
}
.test2{
display:inline-block;
border: 1px solid blue;
vertical-align:bottom;
}
<div class='outer'>
<div class='test1'>
here is some info
</div>
<div class='test2'>
here is more info
</div>
</div>