希望这张图片能说明一切……!!!需要在 html + css 中执行此操作。注意:我想要图像内的边框。
问问题
3639 次
1 回答
8
CSS:
#border {
border:3px dashed white;
border-radius:100px;
width:184px;
height:184px;
position:relative;
left:5px;
top:5px;
}
#image {
background-image:url(table.jpg);
width:200px;
height:200px;
border-radius:100px;
}
HTML:
<div id="image">
<div id="border"></div>
</div>
根据需要调整宽度和高度。
演示:http: //jsfiddle.net/yGcFx/
于 2012-04-19T08:02:01.273 回答