-1

I have the following HTML, I am trying to center align the span tag inside ul li.

<nav class="navbar navbar-default">
    <div class="container-fluid">
        <div class="navbar-header">
            <a class="navbar-brand" href="#">
                <img src="../">
            </a>

            <ul class="nav navbar-nav">
                <li>
                    <span>Need to Center align</span>
                </li>
            </ul>
        </div>
    </div>
</nav>
chazsolo
  • 7,873
  • 1
  • 20
  • 44
good.learner
  • 121
  • 1
  • 2
  • 13
  • Its tricky. For other elements you could either go `text-center` or `mx-auto` but with `
  • `, you gotta hack it a bit: https://stackoverflow.com/questions/45782973/text-align-center-in-li-element
  • – Iskandar Reza Sep 19 '18 at 18:31
  • Possible duplicate of [text-align center in
  • element](https://stackoverflow.com/questions/45782973/text-align-center-in-li-element)
  • – Rob Sep 19 '18 at 18:47