css vertically centering a fixed positioning div

前端 未结 7 912
醉酒成梦
醉酒成梦 2020-12-08 04:17

I have the following HTML for a sort-of lightbox project.

th

7条回答
  •  温柔的废话
    2020-12-08 04:41

    Alternatively, you could try this (only works if you know the height of the image):

    #image{
    position:relative;
    height:600px;
    top: 50%;
    margin-top: -300px; /* minus half the height */
    border:1px solid grey;
    }
    

提交回复
热议问题