Answers for "make 2 div in one line"

CSS
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
0

css make div one line

div {
    width: 100px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}
Posted by: Guest on January-03-2021
0

html css make p div into two lines

line-height:20px;
height:40px;

overflow:hidden;
white-space: pre;
Posted by: Guest on February-15-2020

Code answers related to "make 2 div in one line"

Browse Popular Code Answers by Language