CSS绘图和Zepto / Phonegap有问题吗?

时间:2012-01-23 20:14:28

标签: css cordova drawing zepto

我正在尝试使用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有问题吗?

1 个答案:

答案 0 :(得分:1)

您丢失了px

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

测试:

http://jsfiddle.net/Kjy5y/