I am giving different settings for tool tips. It's not working.
    .hi .tooltip-inner {
        background: #00f;
    }
    <div class="hi">
        <a class="tooltips" data-placement="bottom" data-container="body" data-original-title="Hi there" href="#">Hi there</a>
    </div>
        <div class="hello">
        <a class="tooltips" data-placement="bottom" data-container="body" data-original-title="Hello" href="#">Hello</a>
    </div>
I am setting the background of 'hi there' to blue, but not working. What's wrong?