所以这是我的模型设计:
以下是我的示例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;
}
但它没有做我的模型中的样子。需要你的帮助。感谢。
更新:
答案 0 :(得分:1)
看起来您没有为徽标添加标记。
所以添加标记:
<div class="logo"></div>
在css中
.logo
{
height: 50px;
background: brown;
}
<强> FIDDLE 强>