网站徽标css下面的位置菜单栏

时间:2013-08-20 12:41:46

标签: html css

所以这是我的模型设计:

Here

以下是我的示例css:

.menu{
padding: 32px;
background-color: #cc6666;
opacity: 0.5;
filter: Alpha(opacity = 50); /* IE8 and earlier */
clear: both;
margin: 0 auto;
width: 100%;
text-align: center;
}

但它没有做我的模型中的样子。需要你的帮助。感谢。

更新:

http://jsfiddle.net/qdhcQ/

1 个答案:

答案 0 :(得分:1)

看起来您没有为徽标添加标记。

所以添加标记:

<div class="logo"></div>

在css中

.logo
{
    height: 50px;
    background: brown;
}

<强> FIDDLE