2011-11-19 91 views
0

我想弄清楚如果填充在這個用保證金/填充問題 - 中級CSS學生

這裏調整是在HTML:

<div id="branding"> 
    <h1> 
    {block:IfHeaderImage}<a href="/"><img src="{image:Header}" alt="{Title}" /></a> {/block:IfHeaderImage} 

    {block:IfNotHeaderImage}<a href="/">{Title}</a>{/block:IfNotHeaderImage} 
    </h1> 
</div><!-- #branding --> 

和相關的CSS:

#header #branding { 
    border-top: 1px solid #ccc; 
    border-bottom: 1px solid #ccc; 
    margin: 0 auto 3px; 
    {block:IfNotHeaderImage}padding: 40px 0;{/block:IfNotHeaderImage} 
    width: 900px; 
} 

我嘗試過:添加一個高度屬性並更改填充,但沒有任何工作。這是在Tumblr(this site)中完成的,它有點挑剔。

任何幫助非常感謝!

+2

它看起來像填充已應用(40px頂部和底部,標題文本上下的空間)。 –

回答