html - Picture link not working when inside a block -


would know why picture link doesn't work when inside container (the picture white triangle on right side)? note works fine when outside block. enter image description here

css:

.block {     position: relative;     display: block;     clear: both;     overflow: hidden;     box-sizing: border-box;     margin-right: auto;     margin-left: auto;     padding-right: 20px;     padding-left: 20px;     width: 100%; }  .block img {     float: right;     margin-left: 40px; } 

adding css should fix issue:

.arrow-circle{    position:relative;    z-index: 9999; } 

Comments

Popular posts from this blog

java.util.scanner - How to read and add only numbers to array from a text file -

rewrite - Trouble with Wordpress multiple custom querystrings -