html css link into another link -
here problem : i've try add "link" one. explanation : have image, inside link, when click anywhere on image i'm redirected page want. i'm trying is, add small "edit icon" @ top right corner of image, can edit properties on page dedicated this.
the fact want have "edit icon" link, when click on want redirected on page, not page url of main image container link...
so code looks :
<a href...> <span ... style : size , background image looks clickable picture...> <a href...> <span... second span background (edit icon), float right (to in corner of container span) , small sized...> </span> </a> </span> </a>
if things way, second block (edit icon) appears out of container... , if change order. appears it's not clickable. doing wrong? impossible make links links? or special way that?
you can't place link other one. should place links each after this:
<div id="container"> <a id="show" href="link1.html"><div></div></a> <a id="edit" href="edit.html"><div></div></a> </div>
here example : http://jsfiddle.net/gxv73/1/
Comments
Post a Comment