gpt4 book ai didi

html - 使用css将图像显示为带圆圈的图像

转载 作者:太空狗 更新时间:2023-10-29 14:49:58 25 4
gpt4 key购买 nike

这是我的代码 - 这适用于 chrome、firefox 和 safari ..我已经在 Windows 7 上测试过但是在 IE 8 和 Opera 浏览器中,以下代码不起作用,我没有显示带圆圈的图像,而是以方形形式显示图像

<div id="hotspot-img1-0">  <ul>    <img class="proimg" src="http://profile.ak.fbcdn.net/hprofile-ak-snc4/276311_100002617687873_1118195351_n.jpg" title="web" style="width:100px;height:100px;background:#fff;border:2px solid #ccc;-moz-border-radius:52px;-webkit-border-radius:52px;">  </ul></div>

CSS

#hotspot-img1-0{
top: 570px;
left: 67px;
height: 104px;
width: 104px;
border-top-left-radius: 52px;
border-top-right-radius: 52px;
border-bottom-right-radius: 52px;
border-bottom-left-radius: 52px;
box-shadow: 0px 2px 5px 0px;
border-top-color: rgb(255, 255, 255);
border-left-color: rgb(255, 255, 255);
border-right-color: rgb(255, 255, 255);
border-bottom-color: rgb(255, 255, 255);
border-top-width: 2px;
border-left-width: 2px;
border-right-width: 2px;
border-bottom-width: 2px;
border-top-style: solid;
border-left-style: solid;
border-right-style: solid;
border-bottom-style: solid
}

最佳答案

@桑德赫斯特;首先糟糕的标记是这样写的:

<div>
<ul>
<li>
<img class="proimg" src="http://profile.ak.fbcdn.net/hprofile-ak-snc4/276311_100002617687873_1118195351_n.jpg" title="web">
</li>
</ul>
</div>

& 问题的答案使用 background-image 而不是 img :

li{
background:url(image.jpg) no-repeat;
-moz-border-radius:52px;
-webkit-border-radius:52px;
border-radius:52px;
width:200px;
height:200px;
}

关于html - 使用css将图像显示为带圆圈的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7749588/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com