make two inner svg elements side by side in a bigger div - HTML CSS SVG

HTML CSS examples for SVG:svg element

Description

make two inner svg elements side by side in a bigger div

Demo Code

ResultView the demo in separate window

<html>
 <head></head> 
 <body> 
  <div> 
   <div> 
    <svg width="1000px" height="400px" style="float:right"> 
    </svg> 
   </div> <!--from   ww  w  .  j  a  va  2  s.c o  m-->
   <div> 
    <svg width="300px" height="400px" style="float:right"> 
    </svg> 
   </div> 
  </div>  
 </body>
</html>

Related Tutorials