在圆的节点和圆心设置图像
我在下面编写了 html 以显示下面的 7 个图像,
<html>
<head>
<style>
img {
border-radius: 50%;
}
</style>
</head>
<body>
<h2>Rounded Images</h2>
<img src="img_avatar.png" alt="Avatar" style="width:200px">
<img src="img_avatar.png" alt="Avatar" style="width:200px">
<img src="img_avatar.png" alt="Avatar" style="width:200px">
<img src="img_avatar.png" alt="Avatar" style="width:200px">
<img src="img_avatar.png" alt="Avatar" style="width:200px">
<img src="img_avatar.png" alt="Avatar" style="width:200px">
<img src="img_avatar.png" alt="Avatar" style="width:200px">
</body>
</html>
该 html 图像看起来如下
但希望此图像采用圆形格式,以便一个图像位于中心,所有其他图像围绕它 像圆圈一样,所以尝试添加下面的CSS
.Circle {
width: 500px;
height: 500px;
background: aqua;
border: 30px solid blue;
}
来创建圆圈,但是如何在节点上设置图像并在这个圆圈的中心?
I have written below html to show 7 images below is the html
<html>
<head>
<style>
img {
border-radius: 50%;
}
</style>
</head>
<body>
<h2>Rounded Images</h2>
<img src="img_avatar.png" alt="Avatar" style="width:200px">
<img src="img_avatar.png" alt="Avatar" style="width:200px">
<img src="img_avatar.png" alt="Avatar" style="width:200px">
<img src="img_avatar.png" alt="Avatar" style="width:200px">
<img src="img_avatar.png" alt="Avatar" style="width:200px">
<img src="img_avatar.png" alt="Avatar" style="width:200px">
<img src="img_avatar.png" alt="Avatar" style="width:200px">
</body>
</html>
This images comes looks like below
but want this image in circular format so one image is in center and all other images surround it
like circle so tried adding below css
.Circle {
width: 500px;
height: 500px;
background: aqua;
border: 30px solid blue;
}
which created circle but how to set image on nodes and center in this circle ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
知道这个问题已经得到解答,我正在发布另一个答案
这里像
/* [*] */
这样的注释行意味着您必须正确地编辑特征
一支笔
Knowing that this question is answered,i am posting another answer
here commented lines like
/* [*] */
means you have to editFeatures
A pen