Answers for "put two elements in same line css"

CSS
0

css element same line

#element1 {display:inline-block;margin-right:10px;} 
#element2 {display:inline-block;}
Posted by: Guest on June-28-2021
3

add 2 div in same line

#bloc1, #bloc2
{
    display:inline;
}



<div id="block_container">

    <div id="bloc1"><?php echo " version ".$version." Copyright &copy; All Rights Reserved."; ?></div>  
    <div id="bloc2"><img src="..."></div>

</div>
Posted by: Guest on October-04-2020

Code answers related to "put two elements in same line css"

Browse Popular Code Answers by Language