Placing two "float:right" images above one another - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Image

Description

Placing two "float:right" images above one another

Demo Code

ResultView the demo in separate window

<html>
 <head></head> 
 <body> 
  <div style="float:right"> 
   <p> <img src="https://www.java2s.com/style/demo/Safari.png"> </p> 
   <p> <img src="https://www.java2s.com/style/demo/Opera.png"> </p> 
  </div> <!--from  www  .jav a 2s  .  c o  m-->
  <p> text... </p>  
 </body>
</html>

Related Tutorials