Slideshow header - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Header

Description

Slideshow header

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <style id="compiled-css" type="text/css">

#Slideshow {<!-- w w  w  .j a  v  a 2s  .  c  om-->
   background: #000;
   position: absolute;
   top: 121px;
   left: 0;
   width: 100%;
   margin: 0;
   height: 200px;
   overflow: hidden;
}
#Slideshow img {
   width: 100%;
}


      </style> 
 </head> 
 <body> 
  <div id="Slideshow"> 
   <img src="https://www.java2s.com/style/demo/Firefox.png" name="slide"> 
  </div>  
 </body>
</html>

Related Tutorials