2016-05-30 92 views
-6

我想把圖像上池的頂部,但我不能再向上移動,還有就是網絡移動圖像到電池的頂部

Image

我的CSS的照片

#animes { 
    width: 130px; 
    height: 100px; 
    display: block; 
    padding-left: 10px; 
    padding-right: 10px; 
    padding-top: -50px; 
} 
+1

呀,祝你好運... –

+0

您需要更具描述性,我甚至不能說出你在問什麼。也許顯示一些你嘗試過的東西的示例代碼。如果你希望得到幫助,你必須在這個問題上付出更多的努力。 –

+4

我們都在緊急模式下,老兄。 –

回答

-1

將valign =「top」添加到單元格中。如在此fiddle

HTML:

<table cellspacing="0" cellpadding="0" border="1"> 
    <tr> 
    <td valign="top"><img src="https://www.smallbusinesssaturdayuk.com/Images/Small-Business-Saturday-UK-Google-Plus.gif"></td> 
    <td></td> 
    <tr> 
</table> 

CSS:

table{ 
    width: 500px; 
    height: 300px; 
} 
/* If you want it done from CSS remove the valign and add in your css the following: */ 

td { vertical-align: top; } 

這裏是fiddle垂直對齊

+0

請注意'valign'在HTML5中已棄用。改用CSS。 –

+0

如果你想要HTML5,那麼只需使用:td {vertical-align:top; } –