本文介绍了我必须使用asp.net,级联样式表和jquery来做到这一点的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
这里我必须在灯箱中的图像上放置一个圆形框架。
在灯箱中,方形应该变成圆形
怎么做。
请帮我解决这个问题。
谢谢你
here i have to place a rounded frame on to the image in lightbox.
in lightbox , the square shaped should be turned into rounded shaped
how to do it.
please help me out of this problem.
thank you
推荐答案
<style type="text/css">
#div1
{
height: 100px;
width: 100px;
background-color: Orange;
border: solid 5px Silver;
border-radius: 10px;
margin: 5px;
}
</style>
将其放在 标签内......
Place this inside tag...
<div id="div1">
</div>
查看上述代码的结果......希望你得到它......
See the outcome of above code... Hope you got it...
这篇关于我必须使用asp.net,级联样式表和jquery来做到这一点的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!