-2

I'm having problem in making borders over fa fa star icon. It works perfectly but it's displaying behind fa fa icon.

I tired putting it in i tag but still it's not working.

<i class="fa fa-star" aria-hidden="true"></i>
<div class="text-block">
  <h4>Nature</h4>
  <p>What a beautiful sunrise</p>
</div>
Quentin
  • 914,110
  • 126
  • 1,211
  • 1,335
Aleem223
  • 1
  • 1

1 Answers1

-1

If you added the class border to your icon tag, you could then give the element a border by adding the following CSS to your project.

.border{
border: 1px solid #000;
}

If this is not what you are looking for, please update your question to be more descriptive about, in what way, you want to add a border to your element.

W4yp01nt
  • 57
  • 2
  • 9