如何在图像上创建带有边框半径的嵌入边框

How to do an inset border with a border radius on an image(如何在图像上创建带有边框半径的嵌入边框)

本文介绍了如何在图像上创建带有边框半径的嵌入边框的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何处理图像上带有边框半径的嵌入边框:

我可以使用大纲CSS属性

.img{
    border-radius: 16px;
    outline: 3px solid #fece40;
    outline-offset: -16px;  
}

但这为我提供了插入边框,但没有轮廓的半径设置。

div

使用额外的推荐答案并考虑伪元素:

.img {
  border-radius: 16px;
  display: inline-block;
  overflow: hidden;
  position: relative;
}

.img:before {
  content: "";
  position: absolute;
  border-radius: inherit;
  border: 3px solid #fece40;
  inset: 16px;
}

img {
  display: block;
}
<div class="img"><img src="https://picsum.photos/id/237/200/200"></div>

这篇关于如何在图像上创建带有边框半径的嵌入边框的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本文标题为:如何在图像上创建带有边框半径的嵌入边框

基础教程推荐