欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

css画圆

程序员文章站 2022-07-09 18:06:24
css画圆

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width">

<title>css画圆</title>

<style>

#test {

width:30px;

height:30px;

border: 3px solid #ffa56f;

  border-radius: 100%;

  background: #FF8033;

  box-shadow: 0px 0px 5px #ffa56f;

}

</style>

</head>

<body>

<div id="test"></div>

</body>

</html>