Flash or object tag inside an anchor link

前端 未结 2 1555
孤城傲影
孤城傲影 2021-01-21 06:58

Is it possible to insert a link to the object tag where after you click it you will be redirected to that link?

I already tried this:



        
2条回答
  •  悲哀的现实
    2021-01-21 07:17

    I know this is a very old post, but at least now you can make the link clickable also like this:

    a {
      position: relative;
      z-index: 1;
    }
    
    object {
      position: relative;
      z-index: -1;
    }
    

提交回复
热议问题