Now there is a new option called flex box layout. It is very simple to use and is more effective.
You have a parent div which contains 3 child divs.
.parent-div{
display: flex;
}
Add this code and immediately all the child div will be placed horizontally inside the parent div.
If it is not working, you can add one more line
.parent-div{
display: flex;
flex-direction: row;
}
This should work fine.
You can learn more about flex-box layout techniques online.
Regards,
Pavithra Ramesh
Spidergems