html - Combine 2 div lines into 1 -
how can combine these 2 lines one? want them both display on footer on same line instead of on top of each other; copyright on left side , seal on right side
<div align="left"> © copyright 2015 </div> <div align="right"; id="siteseal"><script type="text/javascript" src="https://seal.godaddy.com/getseal? sealid=ucxy8fy4wxqsq6uqxa9hmdku7bpt6mszckvoa4w04tulp31if83esccpwg4p"> </script></div>
on first div
style="display:inline-block;" on second div
style="display:block; float:right" here example :
<body> <div id=footer style="width:80%; margin:auto; background-color:rgb(50,50,50);"> <div style="display:inline-block; color:white; padding-left:20px"> © copyright 2015 </div> <div style="display:block; float:right; color:white; padding-right:20px"> fundhor </div> </div> </body>
Comments
Post a Comment