使用图像周围非常特定的形状设置边框样式

时间:2017-09-29 11:51:35

标签: html html5 css3 css-shapes

对于网络开发来说非常新,如果我听起来好像不知道自己在做什么,请提前道歉。试图在图像周围使用这种类型的边框,但无法通过该特定角落进行此操作。有什么想法吗?check the link please cannot embed images into this post

1 个答案:

答案 0 :(得分:0)

有两个街区。你可以使用这样的东西(红色的照片)

.bg
{
    width: 120px;
    height: 120px;
    border: solid green;
}

.image
{
    position: relative;
    top: 30px;
    left: 30px;
    width: 100px;
    height: 100px;
    background-color: red;
}
<html>
<head>
</head>
<body>
<div class="bg">
<div class="image">

</div>
</div>
</body>
</html>