我使用了一个Bootstrap示例:http://twitter.github.com/bootstrap/examples/fluid.html
以下代码插入到navbar-inner div中:
<div class="logo">
<div class="quadratLogo"> </div>
</div>
样式为:
.logo {
font-size: 24px;
font-family: 'Arial';
min-width: 500px;
}
.quadratLogo {
width:24px;
height:20px;
border-radius:0px 4px 0px 4px;
background-color: ff0000;
float:left;
}
你能说出为什么quadratLogo div不可见,而且quadratLogo的background-color属性被Chrome视为无效?
答案 0 :(得分:5)
这是一种有效的颜色 - 但您忘记在十六进制值之前添加#
符号。
.quadratLogo {
width:24px;
height:20px;
border-radius:0px 4px 0px 4px;
background-color: #ff0000;
/* --------^ */
}
答案 1 :(得分:2)