为什么我的#hello没有出现?

时间:2013-09-30 17:04:13

标签: html css

下面这个div根本没有出现.. 我所要做的只是做一张幸福的脸......

<div>
  <div id="bin">
    <div id="inner-bin"></div>
    <div id="inner-bin_2"></div>
    <div id="hello"></div>
  </div>
</div>

#bin{
  border-radius:100%; 
  margin:40px;
  position:relative; 
  height:500px;
  width:500px;
  background-color:#013249
}

#inner-bin{
  height:120px;
  width:120px;
  position:absolute;
  top:100px;
  left:108px;
  border-radius:100%;  
  background-color:#58A3C8;}

#inner-bin_2{
  height:120px;
  width:120px;
  position:absolute;
  top:100px;
  left:280px;
  border-radius:100%;  
  background-color:#58A3C8;}
}

下面这个div根本没有出现.. 我所要做的只是做一张幸福的脸......

#hello{
  height:120px;
  width:10px;
  position:absolute;
  left:108px;
  border-radius:100%;  
  background-color:#58A3C8;
}

1 个答案:

答案 0 :(得分:2)

你的#inner-bin_2:

之后还有一个额外的结束括号