how to make colorbox responsive

前端 未结 16 1107
情歌与酒
情歌与酒 2021-01-30 13:35

I am using colorbox in a responsive website.

I have a request : I wish that Colorbox automatically adjusts itself to the size and orientation of the screen / mobile devi

16条回答
  •  情话喂你
    2021-01-30 13:50

    I've made this in CSS for youtube video box, but take care, it could cut some vertical images.

    @media (max-width: 480px) {
    #colorbox {
    max-height:218px !important;
    }
    #cboxWrapper *, #cboxWrapper {
    height:auto !important;
    }
    }
    

提交回复
热议问题