Weird issue with Chrome inspect element

后端 未结 1 473
时光说笑
时光说笑 2021-01-17 23:50

When I load my page, one of the images is higher than it is supposed to be. When I right click \"Inspect element\" anywhere on the page, the image shifts back to its normal

相关标签:
1条回答
  • 2021-01-18 00:29

    If you use the css below instead it should solve your problem.

    #content{
        position: relative;
    }
    .page-company-profile .node .taxonomy_image_wrapper {
        position: absolute;
        left: 500px;
        top: 58px;
    }
    
    0 讨论(0)
提交回复
热议问题