I'm new to CSS and HTML and my question is very simple!
I have three <div>
tags in my page like this :
<div id="first"> foo </div>
<div id= "second"> foo </div>
<div id= "third"> foo </div>
I'd like to show my divs like this :
<div id="first"> foo </div>
<div id= "second"> foo </div> <div id= "third"> foo </div>
I'd like to move third on right side and align with second in order to be in same line!
How can I do it?