2
我想要這個結構,一個容器有flex:display,一個圖像漂浮在右邊,然後是h1和h2,我想把這些垂直和水平中心放在div的剩餘空間上。如何浮動圖像和中心標題留在空間?
這是我目前的結果。
樣機。
+-----------------------+
| |
|XXXX |
|XXXX HELLFISH |
|XXXX born to die |
|XXXX |
| |
+-----------------------+
這是html代碼。
div.container
img(src='http://vignette3.wikia.nocookie.net/simpsons/images/a/a1/Flying_Hellfish_Logo.png/revision/latest?cb=20150327234211')
h1 HELLFISH
h2 Born to die
SCSS。
.container{
display: flex;
width: 50%;
border: 1px solid red;
justify-content: space-between;
img{
max-width: 300px;
max-height: 300px;
float: left;
}
h1{
align-self: center;
margin: auto;
position: relative;
}
h2{
align-self: center;
margin: auto;
vertical-align:middle;
position: relative;
}
}
該codepen。 http://codepen.io/TabaresSotelo/pen/pRyxPz
此致