9

How do I nest the 'Featured' text inside the a tag, given the span, the text, and the other span are siblings?

li
  a href="#" class="selected"
    span class="icon-before"
    Featured
    span class="icon-after"
Andrei Botalov
  • 20,686
  • 11
  • 89
  • 123
Marek Příhoda
  • 11,108
  • 3
  • 39
  • 53

2 Answers2

13
li
  a href="#" class="selected"
    span class="icon-before"
    | Featured
    span class="icon-after"

Gives:

<li><a class="selected" href="#"><span class="icon-before"></span>Featured<span class="icon-after"></span></a></li>
jdoe
  • 15,665
  • 2
  • 46
  • 48
0
ul
  li
    | first text
    span.color-red.bold-g
     | (text transform)

Give :

<ul><li>first text<span class="color-red bold-g">(text transform)</span></li>
khivar
  • 1