I have a list of file which contain .psd, .ai, .eps,.pdf in html. I would like to view the file when mouse over the filename. Is it possible to that?
Below snippet is example.
.box{
display: none;
width: 100%;
}
a:hover + .box,.box:hover{
display: block;
position: relative;
z-index: 100;
}
This live preview for <a href="http://en.wikipedia.org/">Wikipedia</a><div class="box"><iframe src="http://en.wikipedia.org/" width = "500px" height = "500px"></iframe></div> remains open on mouseover.