CSS绘图和Zepto/Phonegap是否存在问题?

CSS绘图和Zepto/Phonegap是否存在问题?,css,cordova,drawing,zepto,Css,Cordova,Drawing,Zepto,我试图用CSS画一个圆圈,但它没有渲染。这是我的密码: <div id="circle" height="65" width="65" position="absolute"></div> 我在这方面犯了错误,还是CSS和Zepto或Phonegap有问题?您丢失了px #circle { background:blue; width:65px; height:65px; border-radius:50%; } 测试地点: #circle {

我试图用CSS画一个圆圈,但它没有渲染。这是我的密码:

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

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

您丢失了
px

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

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