How To Make Div Elements Display Inline
Here we consider how to Make Div Elements Display Inline.
Lets start with one example here.
Suppose we have three Divs as shown below.

On runtime, these Divs looks like this.

Now for making these Divs display inline, follow these style.
div{
display:inline;
}
That's only by applying above style, we can Make Div Elements Display Inline.
If above style is not working, apply float : left for these Divs.
div{
float : left
}
The result will be like this.
