Place square svg to the center of the screen, scale it to fit the screen's width and height with some constraints

后端 未结 6 1418
臣服心动
臣服心动 2021-02-14 14:03

It seem to be a silly question and possibly a dupe, but I couldn\'t find a good solution for a while, so finally dare to ask.

I want to place an

6条回答
  •  盖世英雄少女心
    2021-02-14 14:59

    You still want aligment vertical? look this

    .vertical-align {
    	height:1000px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .svg-container {
      	max-height:15cm;
      	max-width:15cm;
    	height: 100%;
    	width: 100%;
    }

提交回复
热议问题