2016-04-02 61 views
0

試圖使用div的網格系統,我可以使用文本對齊中心,但它只是不工作。如果我使用flex css,那麼div就會忽略我創建的屏障,假設它將分割div。不使用flex的問題是我無法使用邊距使div的邊緣與徽標和導航欄的末端對齊。Flex容器間的固定寬度之間的空間只是不適合我

託管。被評論的人正在使用flex和我想修復的那個。

  • 所有的幫助是非常有責任的,在此先感謝。

    /*.container{ 
    display: flex; 
    justify-content: space-between; 
    min-height: 100vh; 
    width: calc(100vw - 500px); 
    margin: 0 auto; 
    }*/ 
    .projectskort{ 
    display: inline-block; 
    margin-top: 10px; 
    width: 224px; 
    height: 270px; 
    border-radius: 3px; 
    background-color: white; 
    } 
    
+4

瞭解請張貼在這個問題本身所有相關的代碼。堆棧溢出意味着成爲每個人的參考資源。但是,如果您提供的鏈接死亡或網頁更改,則此問題對未來的訪問者不再有用。 http://stackoverflow.com/help/how-to-ask –

+0

是否有原因,你使用100vw - 500px而不是百分比? –

回答

1

卸下兩個你.container類和與

.container{ 
    min-height: 100vh; /*Remove to see the difference*/ 
    width:72%; /*Modify it for your needs*/ 
    margin: 0 auto; 
    display: flex; 
    flex-wrap: wrap; /*Recommended property*/ 
    justify-content: space-between; 
} 
.projectskort{ 
    display: flex; 
    margin-top: 10px; 
    width: 224px; 
    height: 270px; 
    border-radius: 3px; 
    background-color: white; 
} 

取代他們,這就是我從你的問題

+0

這樣做,我想。謝謝,我一直圍繞着那個包裹。 –

+0

高興地幫助,當我開始用內聯塊+塊編碼css時,我遇到了同樣的問題,然後我學會了[Flexbox](https://css-tricks.com/snippets/css/a-guide-to- flexbox /),一切都變得容易了。順便說一句,請注意答案,以便它可以標記爲已回答 –

相關問題