0

我正在尝试用 CSS 画一个圆圈,但它没有渲染。这是我的代码:

<div id="circle" height="65" width="65" position="absolute"></div>

并在 CSS 文件中:

#circle {
  background:blue;
  width:65;
  height:65;
  border-radius:50%;
}

我在这方面犯了错误,还是 CSS 和 Zepto 或 Phonegap 有问题?

4

1 回答 1

1

你输了px

#circle {
  background:blue;
  width:65px;
  height:65px;
  border-radius:50%;
}

测试:

http://jsfiddle.net/Kjy5y/

于 2012-01-23T22:00:50.000 回答