HTML CSS examples for CSS Widget:Header
Slideshow header
<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>