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

问题描述

我希望图标叠加在边框上。



我尝试过:



i want the icon to overlay on border.

What I have tried:

<div class="col-sm-4">
      <div class="div1">
        <br>
        
<h3 style="color: red;font-weight: bold"> Qualified Coaches </h3><br>
<p style="text-align: center;">  Our coaches have years of experience  in<br> various types of fitness and sports. </p>

      </div>
    </div>
</div>







.div1 {
    width: 350px;
    height: 160px;
    border: 2px solid grey;
    opacity: 0.9;
}

推荐答案


这篇关于如何在框的边框上添加图标的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-21 23:08