Put next to a SVG Icon with the same padding on all line breaks - HTML CSS SVG

HTML CSS examples for SVG:Line

Description

Put next to a SVG Icon with the same padding on all line breaks

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
 </head> <!--from   w w  w.  j a v a2 s.  com-->
 <body> 
  <div style="float:left; display:inline-block; clear:both;"> 
   <svg width="60px" height="60px" viewbox="0 0 30 30"> 
    <circle class="donut-hole" cx="15" cy="15" r="7" fill="#fff"></circle> 
    <circle class="donut-ring" cx="15" cy="15" r="7" fill="transparent" stroke="#7cfc00" stroke-width="3"></circle> 
   </svg> 
  </div> 
  <div style="float:left; display:inline-block; width: 90%;">this is a test. this is a test. this is a test. this is a test. </div>  
 </body>
</html>

Related Tutorials