0

I need to fulfil following requirements:

Display text with formatting

<h2 class="heading">
   Hello my dear friends
</h2>

Expected result:

enter image description here

Requirements are next:

  1. HTML is immutable
  2. Don't use javascript
  3. Use sass

I tried to investigate almost all possibilities, but seems I need either edit HTML or add javascript. Can't understand how to use only SASS here, please help, thank you

Alex Faster
  • 199
  • 10
  • So, refer question doesn't answer on how to do it right The right answer is to use :after and then create an absolute positioned block to heading with particular width and height, and move it back with z-index – Alex Faster Apr 14 '20 at 09:55

1 Answers1

0

Are you just trying to highlight the 'dear' word? If so you can use <mark>dear</mark>

conye9980
  • 159
  • 1
  • 12