用css写一个有趣的奥运五环~。
程序员文章站
2022-06-15 22:53:22
用css实现奥运五环样式,并且于页面居中显示,不随页面滚动条而移动,一直处于居中位置。html代码部分就一个div里边包含5个div。代码如下:<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta name="viewp...
用css实现奥运五环样式,并且于页面居中显示,不随页面滚动条而移动,一直处于居中位置。
html代码部分就一个div里边包含5个div。代码如下:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<!-- <link rel="stylesheet" type="text/css" href="./test2.css"> -->
<style>
div.main{
position: fixed;
left: 50%;
top: 50%;
margin-left: -190px;
margin-top: -95px;
}
div.cir1{
width: 100px;
height: 100px;
border:10px solid #00f;
border-radius: 50%;
z-index: 1;
position: relative;
}
div.cir2{
width: 100px;
height: 100px;
border: 10px solid #ff0;
border-radius: 50%;
z-index: 2;
position: absolute;
left: 60px;
top: 50px;
}
div.cir3{
width: 100px;
height: 100px;
border: 10px solid #000;
border-radius: 50%;
z-index: 1;
position: absolute;
left: 130px;
top: 0px;
}
div.cir4{
width: 100px;
height: 100px;
border: 10px solid #0f4;
border-radius: 50%;
z-index: 1;
position: absolute;
left:200px;
top:50px;
}
div.cir5{
width: 100px;
height: 100px;
border: 10px solid #f00;
border-radius: 50%;
z-index: 2;
position: absolute;
left: 260px;
top: 0px;
}
</style>
</head>
<body>
<div class="main">
<div class="cir1"></div>
<div class="cir2"></div>
<div class="cir3"></div>
<div class="cir4"></div>
<div class="cir5"></div>
</div>
</body>
</html>
效果图:
本文地址:https://blog.csdn.net/loringray/article/details/85947668
上一篇: 请注意入侵过程中的细节(一)(图)
下一篇: node在指定时间执行代码
推荐阅读
-
用css写一个有趣的奥运五环~。
-
用Html写一个简单的登陆界面_html/css_WEB-ITnose
-
用C3中的animation和transform写的一个模仿加载的时动画效果_html/css_WEB-ITnose
-
咨询一个问题:用ul li 写的导航栏,下拉菜单怎么不显示? 谢谢各位_html/css_WEB-ITnose
-
咨询一个问题:用ul li 写的导航栏,下拉菜单怎么不显示? 谢谢各位_html/css_WEB-ITnose
-
用C3中的animation和transform写的一个模仿加载的时动画效果_html/css_WEB-ITnose
-
用CSS和Vue框架+axios写一个简单的天气查询网页
-
小demo | 用HTML和CSS写一个简单的菜单栏块
-
用html和css3写一个简单的支付表单
-
用css3实现一个奥运五环