2014-01-23 55 views
1

我正在下頁:CSS條件邊距當文字是多

enter image description here

我要對齊的「更多」按鈕,在容器的底部。如果標題至少爲2行,則可以使用。如果文本是單行,我如何添加一些邊距?

這裏是我的CSS:

.journeycontainer{ 
position: relative; 
width: 940px; 
margin-left: auto; 
margin-right: auto; 

}

.journey{ 
display: inline-block; 
width: 400px; 
float: left; 
position: relative; 
margin: 20px; 

}

.journeycontent{ 
float: left; 
margin-left: 20px; 
position: relative; 

}

.journeybutton{ 
margin-top: 14px; 
margin-bottom: 0px; 
position: absolute; 

}

基本上我想從journeybutton更改邊距

任何建議,歡迎

回答

3

使用:

.journeybutton{ 
    bottom:0px; 
    left:0px 
    position: absolute; 
} 
+0

Doh!感謝人總工作:) – Chancho

1

這是,不使用保證金,使用底:

.journeybutton{ 
    bottom:0 
    position: absolute; 
}