Привет всем. Собственно как сделать такую рамку? Спасибо заранее.
Мои наработки, но не совсем то что нужно, точнее вообще не очень получилось.
.information__top__border{
position: absolute;
height: 1px;
width: 86%;
top:2%;
background: #cca876;
}
.information__left__border{
position: absolute;
height: 86%;
width: 1px;
left: 2%;
background: #cca876;
}
.information__right__border{
position: absolute;
height: 86%;
width: 1px;
right: 2%;
background: #cca876;
}
.information__bottom__border{
position: absolute;
height: 1px;
width: 86%;
bottom: 2%;
background: #cca876;
}
<div class="information__text">
<div class="information__top__border"></div>
<div class="information__bottom__border"></div>
<div class="information__right__border"></div>
<div class="information__left__border"></div>
<div class="information__img__1"></div>
<div class="information__caption">Текст</div>
<div class="information__desc">Текст</div>
</div>