Horje
div same line Code Example
css element same line
#element1 {display:inline-block;margin-right:10px;} 
#element2 {display:inline-block;} 
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>
div same line
#block_container {
    display: flex;
    justify-content: center;
}
div same line
#block_container
{
    text-align:center;
}
#bloc1, #bloc2
{
    display:inline;
}




C

Related
How to change an array in a function in c Code Example How to change an array in a function in c Code Example
Stack Push Code Example Stack Push Code Example
how to login to another user in powershell Code Example how to login to another user in powershell Code Example
how to replace a number in an array in the console for c programming Code Example how to replace a number in an array in the console for c programming Code Example
c bit access union Code Example c bit access union Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11