How to draw circle in html page?(如何在html页面中画圆圈?)
问题描述
如何使用 HTML5 和 CSS3 绘制圆?
How do you draw a circle using HTML5 and CSS3?
里面也可以放文字吗?
推荐答案
你不能画圆本身.但你可以制作与圆形相同的东西.
You can't draw a circle per se. But you can make something identical to a circle.
您必须创建一个圆角矩形(通过 border-radius
),该矩形是您要制作的圆的 宽度/高度的一半.
You'd have to create a rectangle with rounded corners (via border-radius
) that are one-half the width/height of the circle you want to make.
#circle {
width: 50px;
height: 50px;
-webkit-border-radius: 25px;
-moz-border-radius: 25px;
border-radius: 25px;
background: red;
}
<div id="circle"></div>
这篇关于如何在html页面中画圆圈?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在html页面中画圆圈?


基础教程推荐
- 原生拖动事件后如何获取 mouseup 事件? 2022-01-01
- Bootstrap 模态出现在背景下 2022-01-01
- 在 contenteditable 中精确拖放 2022-01-01
- Fabric JS绘制具有活动形状的多边形 2022-01-01
- 即使用户允许,Gmail 也会隐藏外部电子邮件图片 2022-01-01
- 如何添加到目前为止的天数? 2022-01-01
- npm start 错误与 create-react-app 2022-01-01
- fetch 是否支持原生多文件上传? 2022-01-01
- Bokeh Div文本对齐 2022-01-01
- 检查 HTML5 拖放文件类型 2022-01-01